Skip to content

Commit

Permalink
352 Python 3.12 support (#354)
Browse files Browse the repository at this point in the history
* add Python 3.12 support

* update playwright
  • Loading branch information
dantownsend authored Nov 18, 2023
1 parent b803e67 commit f9f2057
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: "Setup Python"
uses: "actions/setup-python@v4"
with:
python-version: 3.11
python-version: 3.12
- name: "Setup Node"
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v4"
with:
python-version: 3.11
python-version: 3.12
- uses: actions/setup-node@v4
with:
node-version: 18
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
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
Expand Down
1 change: 1 addition & 0 deletions requirements/dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ mypy==1.5.1
pip-upgrader==1.4.15
wheel==0.41.3
python-dotenv==0.20.0
setuptools==68.2.2
4 changes: 2 additions & 2 deletions requirements/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pytest==7.4.2
pytest==7.4.3
pytest-cov==4.1.0
flake8==5.0.4
piccolo[postgres,sqlite]>=1.0.0
playwright==1.38.0
playwright==1.39.0
pytest-playwright==0.4.3
httpx>=0.20.0
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def get_version():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database :: Front-Ends",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System", # noqa: E501
Expand Down

0 comments on commit f9f2057

Please sign in to comment.