diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 3b101f4..fc0b08c 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 3c22092..4f52be6 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,8 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3', ], - python_requires='>=3.7', + python_requires='>=3.8', )