Skip to content

Commit b71cedd

Browse files
authored
Dropping support for python 3.7 (#505)
* dropped support for 3.7 * added python 3.9 and 3.10 to classifiers
1 parent c1a992a commit b71cedd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def run(self):
9595
long_description=get_readme(),
9696
long_description_content_type="text/markdown",
9797
author="Center for Human-Compatible AI and Google",
98-
python_requires=">=3.7.0",
98+
python_requires=">=3.8.0",
9999
packages=find_packages("src"),
100100
package_dir={"": "src"},
101101
package_data={"imitation": ["py.typed", "envs/examples/airl_envs/assets/*.xml"]},
@@ -161,8 +161,9 @@ def run(self):
161161
"License :: OSI Approved :: MIT License",
162162
"Programming Language :: Python",
163163
"Programming Language :: Python :: 3",
164-
"Programming Language :: Python :: 3.7",
165164
"Programming Language :: Python :: 3.8",
165+
"Programming Language :: Python :: 3.9",
166+
"Programming Language :: Python :: 3.10",
166167
"Programming Language :: Python :: Implementation :: CPython",
167168
"Programming Language :: Python :: Implementation :: PyPy",
168169
],

0 commit comments

Comments
 (0)