Skip to content

Commit 10fdd65

Browse files
authored
Remove python 3.8 (#118)
1 parent 42b364b commit 10fdd65

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.9', '3.10', '3.11', '3.12']
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ build-backend = "setuptools.build_meta"
66
name = "mo-gymnasium"
77
description="A standard API for MORL and a diverse set of reference environments."
88
readme = "README.md"
9-
requires-python = ">= 3.8"
9+
requires-python = ">= 3.9"
1010
authors = [{ name = "Farama Foundation", email = "contact@farama.org" }]
1111
license = { text = "MIT License" }
1212
keywords = ["Reinforcement Learning", "Multi-Objective", "RL", "AI", "Gymnasium"]
1313
classifiers = [
1414
"Development Status :: 4 - Beta", # change to `5 - Production/Stable` when ready
1515
"License :: OSI Approved :: MIT License",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.8",
1817
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
@@ -80,7 +79,7 @@ mo_gymnasium = [
8079

8180
[tool.black]
8281
line-length = 127
83-
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
82+
target-version = ['py39', 'py310', 'py311', 'py312']
8483
include = '\.pyi?$'
8584

8685
[tool.isort]
@@ -98,7 +97,7 @@ exclude = ["**/node_modules", "**/__pycache__"]
9897
strict = []
9998

10099
typeCheckingMode = "basic"
101-
pythonVersion = "3.8"
100+
pythonVersion = "3.9"
102101
pythonPlatform = "All"
103102
typeshedPath = "typeshed"
104103
enableTypeIgnoreComments = true

0 commit comments

Comments
 (0)