Skip to content

Commit

Permalink
Update version; Move version test to independent test
Browse files Browse the repository at this point in the history
  • Loading branch information
kroenlein committed Feb 13, 2025
1 parent a7af5d5 commit d80e33f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@ jobs:
sbt -Dsbt.log.noformat=true scalafmtCheckAll
sbt -Dsbt.log.noformat=true +test
test-python-package-version:
name: Check Python package version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Check version
run: python .github/scripts/validate_version_bump.py

test-python:
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -75,8 +87,6 @@ jobs:
make
pip install --only-binary=numpy,scipy -r requirements.txt
pip install -r test_requirements.txt
- name: Check version
run: python .github/scripts/validate_version_bump.py
- name: Run Python tests
run: |
cd python
Expand Down
2 changes: 1 addition & 1 deletion python/lolopy/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# single source of truth for package version,
# see https://packaging.python.org/en/latest/discussions/single-source-version/
__version__ = "3.0.3"
__version__ = "3.0.4"

0 comments on commit d80e33f

Please sign in to comment.