Skip to content

Commit

Permalink
Improve dependency installation in GitHub action (#518)
Browse files Browse the repository at this point in the history
* improve dependency installation in python

* update python version

---------

Co-authored-by: Arunesh Singh <[email protected]>
  • Loading branch information
chirag-jn and AruneshSingh authored Oct 23, 2024
1 parent 0640845 commit d768a0e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/data-fetch-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
python-version: [3.8]
python-version: [3.10.13]

steps:
- name: Checkout repository
Expand All @@ -22,9 +22,10 @@ jobs:

- name: Add dependencies
run: |
python -m pip install requests
python -m pip install tqdm
python -m pip install pypistats
python -m pip install --upgrade pip
pip install requests
pip install tqdm
pip install pypistats
- name: Set pepy.tech API key
run: |
Expand Down

0 comments on commit d768a0e

Please sign in to comment.