From d26ef2926616be7d21a1f7ebf569f0e6626894e5 Mon Sep 17 00:00:00 2001 From: Stefano Ragni Date: Sun, 30 Apr 2023 16:33:37 +0200 Subject: [PATCH] fix version placeholder for editable installs --- .github/workflows/ci.yml | 2 +- .github/workflows/ci_petsc.yml | 2 +- ggce/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72cd8dc..133236e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/ci_petsc.yml b/.github/workflows/ci_petsc.yml index 198367e..29d31d6 100644 --- a/.github/workflows/ci_petsc.yml +++ b/.github/workflows/ci_petsc.yml @@ -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 }} diff --git a/ggce/__init__.py b/ggce/__init__.py index a495438..f34737a 100644 --- a/ggce/__init__.py +++ b/ggce/__init__.py @@ -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