Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

update setup.py #18850

Merged
merged 2 commits into from
Aug 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,11 @@ def config_cython():
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: C++',
'Programming Language :: Cython',
'Programming Language :: Other', # R, Scala
'Programming Language :: Perl',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
Expand Down
7 changes: 2 additions & 5 deletions tools/pip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def has_ext_modules(self):
DEPENDENCIES = [
'numpy<2.0.0,>1.16.0',
'requests>=2.20.0,<3',
'graphviz<0.9.0,>=0.8.1'
'graphviz<0.9.0,>=0.8.1',
'contextvars;python_version<"3.7"'
]

shutil.rmtree(os.path.join(CURRENT_DIR, 'mxnet'), ignore_errors=True)
Expand Down Expand Up @@ -192,12 +193,8 @@ def skip_markdown_comments(md):
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: C++',
'Programming Language :: Cython',
'Programming Language :: Other', # R, Scala
'Programming Language :: Perl',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down