Skip to content

Commit

Permalink
fix version placeholder for editable installs
Browse files Browse the repository at this point in the history
  • Loading branch information
st3r4g committed May 8, 2023
1 parent 78a2cc0 commit d26ef29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- uses: actions/checkout@v3
- name: Check lines exist
run: |
grep -x "__version__ = ... # semantic-version-placeholder" ggce/__init__.py
grep -x "__version__ = '0.dev' # version placeholder for editable installs" ggce/__init__.py
docs:
name: Build documentation test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_petsc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v3
- name: Check lines exist
run: |
grep -x "__version__ = ... # semantic-version-placeholder" ggce/__init__.py
grep -x "__version__ = '0.dev' # version placeholder for editable installs" ggce/__init__.py
tests:
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion ggce/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
pass

# DO NOT CHANGE ANYTHING BELOW THIS
__version__ = ... # semantic-version-placeholder
__version__ = '0.dev' # version placeholder for editable installs
# DO NOT CHANGE ANYTHING ABOVE THIS

0 comments on commit d26ef29

Please sign in to comment.