Skip to content

Commit ce3f99d

Browse files
sarahmonodGus Monod
authored andcommitted
Change metadata to support Python 3.12
Now that `pystack` publishes 3.12 wheels, `pytest-pystack` should be able to work with 3.12. Signed-off-by: Gus Monod <gmonod1@bloomberg.net>
1 parent 1e19e00 commit ce3f99d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/validate.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: '3.11'
21+
python-version: '3.12-dev'
2222
- name: Install Python dependencies
2323
run: |
2424
python3 -m pip install -r requirements-dev.txt
@@ -34,13 +34,13 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
python_version: ["3.8", "3.9", "3.10", "3.11"]
37+
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
3838
steps:
3939
- uses: actions/checkout@v3
4040
- name: Set up Python
4141
uses: actions/setup-python@v4
4242
with:
43-
python-version: ${{ matrix.python_version }}
43+
python-version: ${{ matrix.python_version }}-dev
4444
- name: Install Python dependencies
4545
run: |
4646
python${{matrix.python_version}} -m pip install -r requirements-dev.txt

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
2728
"Framework :: Pytest",
2829
]
2930

0 commit comments

Comments
 (0)