mirror of
https://github.com/ml-explore/mlx.git
synced 2025-06-24 17:31:16 +08:00
parent
d15dead35e
commit
d895e38f2e
@ -203,7 +203,7 @@ workflows:
|
|||||||
ignore: /.*/
|
ignore: /.*/
|
||||||
matrix:
|
matrix:
|
||||||
parameters:
|
parameters:
|
||||||
python_version: ["3.8", "3.9", "3.10", "3.11"]
|
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||||
macos_version: ["13", "14"]
|
macos_version: ["13", "14"]
|
||||||
nightly_build:
|
nightly_build:
|
||||||
when: << pipeline.parameters.nightly_build >>
|
when: << pipeline.parameters.nightly_build >>
|
||||||
@ -211,7 +211,7 @@ workflows:
|
|||||||
- build_package:
|
- build_package:
|
||||||
matrix:
|
matrix:
|
||||||
parameters:
|
parameters:
|
||||||
python_version: ["3.8", "3.9", "3.10", "3.11"]
|
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||||
macos_version: ["13", "14"]
|
macos_version: ["13", "14"]
|
||||||
weekly_build:
|
weekly_build:
|
||||||
when: << pipeline.parameters.weekly_build >>
|
when: << pipeline.parameters.weekly_build >>
|
||||||
@ -219,5 +219,5 @@ workflows:
|
|||||||
- build_dev_release:
|
- build_dev_release:
|
||||||
matrix:
|
matrix:
|
||||||
parameters:
|
parameters:
|
||||||
python_version: ["3.8", "3.9", "3.10", "3.11"]
|
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||||
macos_version: ["13", "14"]
|
macos_version: ["13", "14"]
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
[**Documentation**](https://ml-explore.github.io/mlx/build/html/index.html) |
|
[**Documentation**](https://ml-explore.github.io/mlx/build/html/index.html) |
|
||||||
[**Examples**](#examples)
|
[**Examples**](#examples)
|
||||||
|
|
||||||
|
[](https://circleci.com/gh/ml-explore/mlx)
|
||||||
|
|
||||||
MLX is an array framework for machine learning on Apple silicon, brought to you
|
MLX is an array framework for machine learning on Apple silicon, brought to you
|
||||||
by Apple machine learning research.
|
by Apple machine learning research.
|
||||||
|
|
||||||
|
4
setup.py
4
setup.py
@ -145,9 +145,7 @@ if __name__ == "__main__":
|
|||||||
package_dir=package_dir,
|
package_dir=package_dir,
|
||||||
package_data=package_data,
|
package_data=package_data,
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
extras_require={
|
extras_require={"testing": ["numpy", "torch"]},
|
||||||
"testing": ["numpy", "torch"]
|
|
||||||
},
|
|
||||||
ext_modules=[CMakeExtension("mlx.core")],
|
ext_modules=[CMakeExtension("mlx.core")],
|
||||||
cmdclass={"build_ext": CMakeBuild},
|
cmdclass={"build_ext": CMakeBuild},
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
Loading…
Reference in New Issue
Block a user