Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Add support for python 3.6
  • Loading branch information
pseudo-rnd-thoughts committed May 24, 2022
commit 02a52bda285610a77d4ec117c9cbc52e03e90b2f
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
install_requires=[
"numpy>=1.18.0",
"cloudpickle>=1.2.0",
"importlib_metadata>=4.10.0; python_version < '3.10'",
"importlib_metadata>=4.8.0; python_version < '3.10'",
"gym_notices>=0.0.4",
],
extras_require=extras,
Expand All @@ -69,9 +69,10 @@
]
},
tests_require=["pytest", "mock"],
python_requires=">=3.7",
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down