Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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