Skip to content

Commit

Permalink
Add Python 3.12 to CI
Browse files Browse the repository at this point in the history
Also add it to `setup.py`.
  • Loading branch information
fsouza committed Oct 3, 2023
1 parent 3c2c01a commit 570de09
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
python-version: "3.10"
- PY_VER: py311
python-version: 3.11
- PY_VER: py312
python-version: 3.12
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
Expand Down Expand Up @@ -63,6 +65,8 @@ jobs:
python-version: "3.10"
- PY_VER: py311
python-version: "3.11"
- PY_VER: py312
python-version: "3.12"

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -103,6 +107,8 @@ jobs:
python-version: "3.10"
- PY_VER: py311
python-version: "3.11"
- PY_VER: py312
python-version: "3.12"

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
python-version: "3.10"
- PY_VER: py311
python-version: 3.11
- PY_VER: py312
python-version: "3.12"

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_version_data() -> dict:
]
+ [
("Programming Language :: Python :: %s" % x)
for x in "3.8 3.9 3.10 3.11".split()
for x in "3.8 3.9 3.10 3.11 3.12".split()
],
project_urls={
"Documentation": "https://splinter.readthedocs.io/",
Expand Down

0 comments on commit 570de09

Please sign in to comment.