Skip to content

Commit 5d79c4e

Browse files
authored
Prepare 0.9 release (#42)
* Run tests on Python 3.13 * Update deployment workflow * Version 0.9.0
1 parent 7806b37 commit 5d79c4e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/pypi-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- name: Install dependencies
2525
run: poetry install
2626

27-
- name: Build and publish on pypi.org
28-
env:
29-
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
30-
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
31-
run: poetry publish --build --username $PYPI_USERNAME --password $PYPI_PASSWORD
27+
- name: Build packages
28+
run: poetry build
29+
30+
- name: Publish on pypi.org
31+
uses: pypa/[email protected]

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]
30+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
3131

3232
steps:
3333
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "DAWG2-Python"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
description = "Pure-python reader for DAWGs (DAFSAs) created by dawgdic C++ library or DAWG Python extension."
55
authors = ["Mikhail Korobov <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)