We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f0a4631 + 33351f3 commit 2401b0eCopy full SHA for 2401b0e
.github/workflows/python-publish.yml
@@ -29,6 +29,7 @@ jobs:
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
32
+ if [ -f requirements.dev.txt ]; then python -m pip install -r requirements.dev.txt; fi
33
pip install build
34
- name: Build package
35
run: python -m build
stuntcat/__init__.py
@@ -1,7 +1,7 @@
1
"""
2
Stuntcat the game
3
4
-__version__ = "0.2.1"
+__version__ = "0.2.2"
5
6
from stuntcat import game
7
0 commit comments