Skip to content

Commit 59f7b2b

Browse files
Update package version
1 parent bd425f9 commit 59f7b2b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/any_changes.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: '3.13'
22+
python-version: '3.11'
2323

2424
- name: Install package
2525
run: uv pip install .[dev] --system

.github/workflows/code_changes.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set up Python
3131
uses: actions/setup-python@v2
3232
with:
33-
python-version: '3.13'
33+
python-version: '3.11'
3434

3535
- name: Install package
3636
run: uv pip install .[dev] --system

.github/workflows/publish_package.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: '3.13'
21-
- name: Install package
22-
run: make install
23-
- name: Build package
24-
run: make
20+
python-version: '3.11'
2521
- name: Publish a git tag
2622
run: ".github/publish-git-tag.sh || true"
23+
- name: Install package
24+
run: make install
2725
- name: Build package
2826
run: make
27+
- name: Remove .whl files
28+
run: rm dist/*.whl
2929
- name: Publish a Python distribution to PyPI
3030
uses: pypa/gh-action-pypi-publish@release/v1
3131
with:

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ changelog:
1919
touch changelog_entry.yaml
2020

2121
build-package:
22-
python -m build sdist bdist_wheel
22+
python -m build
2323

2424
test:
2525
pytest tests

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ extend-exclude = '''
6262
| build
6363
| dist
6464
)/
65-
'''
65+
'''

0 commit comments

Comments
 (0)