Skip to content

Commit 42a4a91

Browse files
committed
fix CD
1 parent ea4eb04 commit 42a4a91

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.7, 3.8, 3.9, '3.10']
14+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
1515

1616
steps:
1717
- uses: actions/checkout@v3
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
26+
pip install .\[test,docs\]
2727
2828
- name: Run tests
2929
run: python -m unittest discover
@@ -45,7 +45,7 @@ jobs:
4545
- name: Install dependencies
4646
run: |
4747
python -m pip install --upgrade pip
48-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
48+
pip install .\[test,docs\]
4949
pip install flake8 black
5050
5151
- name: Lint with flake8

0 commit comments

Comments
 (0)