Skip to content

Commit b286b34

Browse files
authored
Bump version to 0.0.9 (#18)
Bump version in `dintero/version.py`
1 parent 9b278d7 commit b286b34

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Set up Python
1616
uses: actions/setup-python@v4
1717
with:
@@ -24,7 +24,7 @@ jobs:
2424
fmt:
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- name: Set up Python
2929
uses: actions/setup-python@v4
3030
with:
@@ -35,13 +35,13 @@ jobs:
3535
run: make fmtcheck
3636

3737
build:
38-
runs-on: ubuntu-24.04
38+
runs-on: ubuntu-latest
3939
strategy:
4040
matrix:
4141
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
4242

4343
steps:
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
4545

4646
- name: Set up Python ${{ matrix.python-version }}
4747
uses: actions/setup-python@v4

.github/workflows/publish.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
name: Publish to PyPI and TestPyPI
1+
name: Publish Python package to PyPI
22

33
on:
44
release:
55
types: [published]
66

77
jobs:
8-
build-n-publish:
9-
name: Build and publish to PyPI and TestPyPI
8+
publish:
9+
name: Build and publish to PyPI
1010
runs-on: ubuntu-latest
11-
1211
steps:
13-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1413
- name: Set up Python
1514
uses: actions/setup-python@v4
1615
with:
17-
python-version: '3.10'
18-
- name: Build a binary wheel and a source tarball
19-
run: >-
20-
python setup.py sdist
16+
python-version: "3.13"
17+
- name: Install dependencies
18+
run: python -m pip install --upgrade pip build
19+
- name: Build package
20+
run: python -m build
2121
- name: Publish to Test PyPI
22-
uses: pypa/gh-action-pypi-publish@release/v1
22+
uses: pypa/gh-action-pypi-publish@v1
2323
with:
2424
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
2525
repository_url: https://test.pypi.org/legacy/
2626
- name: Publish to PyPI
27-
uses: pypa/gh-action-pypi-publish@release/v1
27+
uses: pypa/gh-action-pypi-publish@v1
2828
with:
2929
password: ${{ secrets.PYPI_API_TOKEN }}

dintero/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.0.8"
1+
VERSION = "0.0.9"

0 commit comments

Comments
 (0)