Skip to content

Commit 3aa2afa

Browse files
Diego PardoDGPardo
authored andcommitted
adding new python versions
1 parent 5f237b1 commit 3aa2afa

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [ 3.8, 3.9, "3.10" ]
11+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
1212

1313
steps:
1414
- uses: actions/checkout@v2
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Poetry
2020
uses: abatilo/actions-poetry@v2
2121
with:
22-
poetry-version: 1.4
22+
poetry-version: 2.4
2323
- name: Install dependencies
2424
run: |
2525
poetry install
@@ -32,6 +32,7 @@ jobs:
3232
3333
publish:
3434
runs-on: ubuntu-latest
35+
needs: test
3536
steps:
3637
- uses: actions/checkout@v2
3738
- name: Build and publish to pypi

.github/workflows/test.yml

Lines changed: 2 additions & 2 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.8, 3.9, "3.10" ]
14+
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
1515

1616
steps:
1717
- uses: actions/checkout@v2
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install Poetry
2323
uses: abatilo/actions-poetry@v2
2424
with:
25-
poetry-version: 1.4
25+
poetry-version: 2.4
2626
- name: Install dependencies
2727
run: |
2828
poetry install

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ authors = ["David Steiner <david_j_steiner@yahoo.co.nz>"]
66
license = "MIT"
77
readme = "README.md"
88
homepage = "https://github.com/Validus-Risk-Management/partifact"
9+
classifiers = [
10+
"Programming Language :: Python :: 3",
11+
"Programming Language :: Python :: 3.11",
12+
"Programming Language :: Python :: 3.12",
13+
"Programming Language :: Python :: 3.13",
14+
"Programming Language :: Python :: 3.14",
15+
]
916

1017
[tool.poetry.scripts]
1118
partifact = "partifact.main:app"

0 commit comments

Comments
 (0)