Add Support for Python 3.12 RC (#3847)

This commit is contained in:
Harshil 2023-08-21 20:27:02 +04:00 committed by GitHub
parent c2c8c53d9c
commit 71eff4731c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -16,7 +16,7 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12.0-beta.3']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12.0-rc.1']
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: False
steps:

View file

@ -109,6 +109,7 @@ def get_setup_kwargs(raw=False):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.8",
)