Skip to content

Commit

Permalink
fix: pass python version as str to avoid wrong parsing (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrgramacki authored Feb 22, 2023
1 parent a82bc96 commit 37e9e96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Install required osmium dependencies
run: sudo apt-get install build-essential cmake libboost-dev libexpat1-dev zlib1g-dev libbz2-dev
- uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Install required osmium dependencies
run: sudo apt-get install build-essential cmake libboost-dev libexpat1-dev zlib1g-dev libbz2-dev
- uses: actions/cache@v3
Expand Down

0 comments on commit 37e9e96

Please sign in to comment.