Drop support for Python 3.7.

Python 3.7 reaches end-of-life on 27 June 2023 (https://devguide.python.org/versions/), and future versions of MuJoCo (after 2.3.6) will no longer support it.

PiperOrigin-RevId: 543594006
Change-Id: I66a7db3dab5d08f2fc52912c43e1532080600fc8
This commit is contained in:
Saran Tunyasuvunakool
2023-06-26 18:04:52 -07:00
committed by Copybara-Service
parent a7021df63e
commit 551a7bbc38
5 changed files with 44 additions and 104 deletions
+1 -2
View File
@@ -363,7 +363,6 @@ SETUP_KWARGS = dict(
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
@@ -385,7 +384,7 @@ SETUP_KWARGS = dict(
CMakeExtension('mujoco._simulate'),
CMakeExtension('mujoco._structs'),
],
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=[
'absl-py',
'glfw',