Skip to content

Commit 0efa97e

Browse files
committed
chore: update Makefile to use poetry for building, adjust Python version support, and increment package version to 0.3.2
1 parent 7fe42ad commit 0efa97e

4 files changed

Lines changed: 261 additions & 217 deletions

File tree

.github/workflows/setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
21+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2222

2323
steps:
2424
- uses: actions/checkout@v3

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ artifacts: test
1515

1616

1717
clean:
18-
rm -rf dist/
18+
rm -rf dist build *.egg-info
1919

2020

2121
prepforbuild:
2222
pip install build
2323

2424

2525
build:
26-
python -m build
26+
poetry build
2727

2828

2929
test-release:

0 commit comments

Comments
 (0)