Skip to content

Commit 7b909d2

Browse files
chore: remove 3.8 support and add 3.13 support
Signed-off-by: Saurav Sharma <[email protected]>
1 parent 513374f commit 7b909d2

File tree

4 files changed

+434
-355
lines changed

4 files changed

+434
-355
lines changed

.github/workflows/deploy_pypi.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Deploy to pypi
22

33
on:
44
push:
5-
tags: "v*"
5+
tags:
6+
- "v*"
67

78
jobs:
89
publish_pypi:
@@ -13,11 +14,11 @@ jobs:
1314
- uses: actions/checkout@v4
1415
- uses: actions/setup-python@v5
1516
with:
16-
python-version: "3.12"
17+
python-version: "3.13"
1718
- name: Install Poetry
1819
uses: snok/install-poetry@v1
1920
with:
20-
version: 1.8.1
21+
version: 1.8.4
2122
virtualenvs-create: true
2223
virtualenvs-in-project: true
2324
- name: Publish

.github/workflows/python_app.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: "3.13"
1619
- uses: actions/setup-python@v5
1720
with:
1821
python-version: "3.12"
@@ -25,13 +28,10 @@ jobs:
2528
- uses: actions/setup-python@v5
2629
with:
2730
python-version: "3.9"
28-
- uses: actions/setup-python@v5
29-
with:
30-
python-version: "3.8"
3131
- name: Install Poetry
3232
uses: snok/install-poetry@v1
3333
with:
34-
version: 1.8.1
34+
version: 1.8.4
3535
virtualenvs-create: true
3636
virtualenvs-in-project: true
3737
- name: Install dependencies

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from nox_poetry import session
22
from nox_poetry.sessions import Session
33

4-
python_versions = ["3.8", "3.9", "3.10", "3.11", "3.12"]
4+
python_versions = ["3.9", "3.10", "3.11", "3.12", "3.13"]
55

66

77
@session(python=python_versions)

0 commit comments

Comments
 (0)