mirror of
https://github.com/wassname/ray.git
synced 2026-07-25 13:30:52 +08:00
Add support for Python 3.9
This commit is contained in:
@@ -16,17 +16,21 @@ DOWNLOAD_DIR=python_downloads
|
||||
NODE_VERSION="14"
|
||||
PY_VERSIONS=("3.6.1"
|
||||
"3.7.0"
|
||||
"3.8.2")
|
||||
"3.8.2"
|
||||
"3.9.0")
|
||||
PY_INSTS=("python-3.6.1-macosx10.6.pkg"
|
||||
"python-3.7.0-macosx10.6.pkg"
|
||||
"python-3.8.2-macosx10.9.pkg")
|
||||
"python-3.8.2-macosx10.9.pkg"
|
||||
"python-3.9.0-macosx10.9.pkg")
|
||||
PY_MMS=("3.6"
|
||||
"3.7"
|
||||
"3.8")
|
||||
"3.8"
|
||||
"3.9")
|
||||
|
||||
# The minimum supported numpy version is 1.14, see
|
||||
# https://issues.apache.org/jira/browse/ARROW-3141
|
||||
NUMPY_VERSIONS=("1.14.5"
|
||||
"1.14.5"
|
||||
"1.14.5"
|
||||
"1.14.5")
|
||||
|
||||
|
||||
@@ -14,11 +14,13 @@ chmod +x /usr/bin/nproc
|
||||
NODE_VERSION="14"
|
||||
PYTHONS=("cp36-cp36m"
|
||||
"cp37-cp37m"
|
||||
"cp38-cp38")
|
||||
"cp38-cp38"
|
||||
"cp39-cp39")
|
||||
|
||||
# The minimum supported numpy version is 1.14, see
|
||||
# https://issues.apache.org/jira/browse/ARROW-3141
|
||||
NUMPY_VERSIONS=("1.14.5"
|
||||
"1.14.5"
|
||||
"1.14.5"
|
||||
"1.14.5")
|
||||
|
||||
|
||||
+7
-1
@@ -27,7 +27,7 @@ logger = logging.getLogger(__name__)
|
||||
# before these files have been created, so we have to move the files
|
||||
# manually.
|
||||
|
||||
SUPPORTED_PYTHONS = [(3, 6), (3, 7), (3, 8)]
|
||||
SUPPORTED_PYTHONS = [(3, 6), (3, 7), (3, 8), (3, 9)]
|
||||
SUPPORTED_BAZEL = (3, 2, 0)
|
||||
|
||||
ROOT_DIR = os.path.dirname(__file__)
|
||||
@@ -440,6 +440,12 @@ setuptools.setup(
|
||||
url="https://github.com/ray-project/ray",
|
||||
keywords=("ray distributed parallel machine-learning "
|
||||
"reinforcement-learning deep-learning python"),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
],
|
||||
packages=setuptools.find_packages(),
|
||||
cmdclass={"build_ext": build_ext},
|
||||
# The BinaryDistribution argument triggers build_ext.
|
||||
|
||||
Reference in New Issue
Block a user