Skip to content

Commit

Permalink
tryihng a fix for python 3.12 pip pkg error
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanrozich committed May 5, 2024
1 parent 68ed2ac commit 014518e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
python-version: '3.x'
# This step sets up the Python environment

- name: Install pip correct version
run: python -m ensurepip --upgrade

- name: Install bumpversion
run: pip install bump2version
# This step installs the bump2version package
Expand Down Expand Up @@ -62,7 +65,8 @@ jobs:
# This step performs the version bump and pushes the changes to the repository

- name: Install Python packaging tools
run: python -m pip install --upgrade pip setuptools wheel
run: |
pip install --upgrade pip setuptools wheel
- name: Install project dependencies
run: pip install -r requirements.txt
Expand Down

0 comments on commit 014518e

Please sign in to comment.