Skip to content

Commit 666dd44

Browse files
Merge pull request #710 from sakgoyal/python313
Support Python 3.13
2 parents 9571f81 + 6869385 commit 666dd44

File tree

5 files changed

+810
-1005
lines changed

5 files changed

+810
-1005
lines changed

.github/workflows/python-app.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19-
- name: Set up Python 3.9
19+
- name: Set up Python 3.13
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: 3.9
22+
python-version: 3.13
2323
- name: Install Poetry
2424
env:
25-
POETRY_VERSION: 1.5.1
25+
POETRY_VERSION: 2.1.2
2626
run: |
2727
curl -sSL https://install.python-poetry.org | python - -y &&\
2828
poetry config virtualenvs.create false

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: ["3.9", "3.10", "3.11"]
12+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515
- uses: actions/checkout@v3
@@ -19,7 +19,7 @@ jobs:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install Poetry
2121
env:
22-
POETRY_VERSION: 1.5.1
22+
POETRY_VERSION: 2.1.2
2323
run: |
2424
curl -sSL https://install.python-poetry.org | python - -y &&\
2525
poetry config virtualenvs.create false

0 commit comments

Comments
 (0)