Skip to content

Commit

Permalink
change version to version dev
Browse files Browse the repository at this point in the history
  • Loading branch information
daphnedemekas committed Apr 15, 2024
1 parent 5a0e5a2 commit 97fa760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id: release-info
run: |
RELEASE_VERSION=$(echo $LATEST_RELEASE | tr -d "v ")
VERSION=$(cat diplomat/__init__.py | grep "__version__" | cut -d "=" -f 2 | tr -d '" ')
VERSION=$(cat diplomat/__init__.py | grep "__version_dev__" | cut -d "=" -f 2 | tr -d '" ')
if ! [[ "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]
then
echo "$VERSION is not a valid version!"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id: release-info
run: |
RELEASE_VERSION=$(echo $LATEST_RELEASE | tr -d "v ")
VERSION=$(cat diplomat/__init__.py | grep "__version_dev__" | cut -d "=" -f 2 | tr -d '" ')
VERSION=$(cat diplomat/__init__.py | grep "__version__" | cut -d "=" -f 2 | tr -d '" ')
if ! [[ "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]
then
echo "$VERSION is not a valid version!"
Expand Down

0 comments on commit 97fa760

Please sign in to comment.