Skip to content

Commit c0b43b7

Browse files
authored
Merge pull request #709 from stan-dev/ci/py3-12
Test on Python 3.12
2 parents 2197480 + daab5b8 commit c0b43b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
matrix:
4646
os: [ubuntu-latest, macos-latest, windows-latest]
47-
python-version: ["3.8", "3.9", "3.10", "3.11"]
47+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4848
env:
4949
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
5050
steps:
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Install dependencies (python)
6060
run: |
61-
python -m pip install --upgrade pip wheel
61+
python -m pip install --upgrade pip wheel build
6262
pip install -r requirements.txt
6363
pip install -r requirements-test.txt
6464
pip install codecov
@@ -71,7 +71,7 @@ jobs:
7171
mypy cmdstanpy
7272
7373
- name: Build wheel
74-
run: python setup.py bdist_wheel
74+
run: python -m build
7575

7676
- name: Install wheel (Linux, macOS)
7777
if: matrix.os != 'windows-latest'

0 commit comments

Comments
 (0)