-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require torch>=1.6; drop support for Python 3.5 (#380)
- Loading branch information
Showing
2 changed files
with
7 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
}, | ||
author='Uber AI Labs', | ||
author_email='[email protected]', | ||
python_requires=">=3.5", | ||
python_requires=">=3.6", | ||
install_requires=[ | ||
'makefun', | ||
'multipledispatch', | ||
|
@@ -41,8 +41,8 @@ | |
], | ||
extras_require={ | ||
'torch': [ | ||
'pyro-ppl>=0.5', | ||
'torch>=1.3.0', | ||
'pyro-ppl>=1.4', | ||
'torch>=1.6.0', | ||
], | ||
'jax': [ | ||
'numpyro>=0.2.4', | ||
|
@@ -72,14 +72,15 @@ | |
}, | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
keywords='probabilistic machine learning bayesian statistics pytorch', | ||
keywords='probabilistic machine learning bayesian statistics pytorch jax', | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
) |