Skip to content

Commit db545a8

Browse files
authored
Merge pull request #82 from pygame/publish-fix2
publish fix2
2 parents 2401b0e + 31d3e52 commit db545a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
run: |
3131
python -m pip install --upgrade pip
3232
if [ -f requirements.dev.txt ]; then python -m pip install -r requirements.dev.txt; fi
33-
pip install build
33+
python -m pip install build
3434
- name: Build package
35-
run: python -m build
35+
run: python -m build --no-isolation
3636
- name: Publish package
3737
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
3838
with:

stuntcat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Stuntcat the game
33
"""
4-
__version__ = "0.2.2"
4+
__version__ = "0.2.3"
55

66
from stuntcat import game
77

0 commit comments

Comments
 (0)