Skip to content

Commit 2401b0e

Browse files
authored
Merge pull request #81 from pygame/publish-fix
publish fix
2 parents f0a4631 + 33351f3 commit 2401b0e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/python-publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32+
if [ -f requirements.dev.txt ]; then python -m pip install -r requirements.dev.txt; fi
3233
pip install build
3334
- name: Build package
3435
run: python -m build

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.1"
4+
__version__ = "0.2.2"
55

66
from stuntcat import game
77

0 commit comments

Comments
 (0)