Skip to content

Commit 79a5596

Browse files
authored
feat: enable python 3.13 in CI testing (#53)
1 parent b2c1c36 commit 79a5596

File tree

3 files changed

+557
-434
lines changed

3 files changed

+557
-434
lines changed

.github/workflows/cicd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
39+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
4040
steps:
4141
- uses: actions/checkout@v3
4242
- uses: actions/setup-python@v4
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
- name: Run pytest
4646
run: |
47-
curl -sSL https://install.python-poetry.org | python
47+
curl -sSL https://install.python-poetry.org | python - --version 1.8.5
4848
poetry install
4949
poetry run python -m pytest --disable-pytest-warnings
5050
env:
@@ -62,7 +62,7 @@ jobs:
6262
python-version: "3.x"
6363
- name: Build
6464
run: |
65-
curl -sSL https://install.python-poetry.org | python
65+
curl -sSL https://install.python-poetry.org | python - --version 1.8.5
6666
poetry self add "poetry-dynamic-versioning[plugin]"
6767
poetry install --only=dev --no-interaction
6868
poetry build --format=wheel

0 commit comments

Comments
 (0)