diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index bdaab28..5472aab 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -29,6 +29,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + if [ -f requirements.dev.txt ]; then python -m pip install -r requirements.dev.txt; fi pip install build - name: Build package run: python -m build diff --git a/stuntcat/__init__.py b/stuntcat/__init__.py index c67e24f..8aab8e5 100644 --- a/stuntcat/__init__.py +++ b/stuntcat/__init__.py @@ -1,7 +1,7 @@ """ Stuntcat the game """ -__version__ = "0.2.1" +__version__ = "0.2.2" from stuntcat import game