Skip to content

Commit

Permalink
Drop Python 3.7 support (#3278)
Browse files Browse the repository at this point in the history
  • Loading branch information
ordabayevy committed Oct 6, 2023
1 parent 41ac46f commit 44ba2d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ sphinx:

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
version: 3.8
install:
- requirements: docs/requirements.txt
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ column_limit = 120
# Global options:

[mypy]
python_version = 3.7
python_version = 3.8
warn_return_any = True
warn_unused_configs = True
warn_incomplete_stub = True
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,10 @@
"horovod": ["horovod[pytorch]>=0.19"],
"lightning": ["lightning"],
"funsor": [
# This must be a released version when Pyro is released.
# "funsor[torch] @ git+git://github.com/pyro-ppl/funsor.git@7bb52d0eae3046d08a20d1b288544e1a21b4f461",
"funsor[torch]==0.4.4",
],
},
python_requires=">=3.7",
python_requires=">=3.8",
keywords="machine learning statistics probabilistic programming bayesian modeling pytorch",
license="Apache 2.0",
classifiers=[
Expand All @@ -152,9 +150,10 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
# yapf
)

0 comments on commit 44ba2d2

Please sign in to comment.