Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Fix pep 440 error in pypi package 3
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-seals committed Aug 9, 2023
1 parent 7d51c13 commit cdf305f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-dev-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
R_VERSION=$(grep VERSION ./tycho/__init__.py | awk '{ print $3 }' | tr -d '"')
date=$(date '+%Y%m%d%H%M%S')
BRANCH=$(echo ${{ github.ref_name}} | sed 's/[_-]//g')
DEV_VERSION=${R_VERSION}.${BRANCH}${date}
DEV_VERSION=${R_VERSION}${BRANCH}${date}
echo VERSION=\"$DEV_VERSION\" > ./tycho/__init__.py
- name: Build Package
Expand Down

0 comments on commit cdf305f

Please sign in to comment.