Skip to content

Commit

Permalink
fix(deps): Ensure queenbee-local always works in Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Oct 19, 2023
1 parent 09dfbe1 commit 65a4c85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependency-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
VERSION: ${{ github.event.client_payload.version }}
run: |
export CLEAN_VERSION=$(echo $VERSION | sed 's/v//g')
sed -i --regexp-extended 's/(queenbee-local==).*/queenbee-local=='"$CLEAN_VERSION"'/' requirements.txt
sed -i --regexp-extended 's/(queenbee-local==).*;python_version>="3.8"/queenbee-local=='"$CLEAN_VERSION"';python_version>="3.8"/' requirements.txt
- name: "Commit and Push Changes"
id: push
env:
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
queenbee-local==0.6.3
queenbee-local==0.6.3;python_version>="3.8"
queenbee-local==0.6.2;python_version<"3.8"
pollination-handlers==0.10.6
click==7.1.2;python_version<'3.8'
click==8.1.3;python_version>='3.8'

0 comments on commit 65a4c85

Please sign in to comment.