Skip to content

Commit

Permalink
upgrade packages for Python 3.13 support. Print more diagnostics when…
Browse files Browse the repository at this point in the history
… installing requirements in github actions
  • Loading branch information
penguinland committed Feb 7, 2025
1 parent 51d6d5c commit 42aa3a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ jobs:
- uses: actions/checkout@v3

- name: Install dependencies
run: pip install -r requirements.txt
run: |
python --version
pip install --upgrade pip
pip --version
pip install -r requirements.txt
- name: Run lint
run: make lint
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pillow == 10.0.1
numpy == 1.25.0
pillow == 11.0.0
numpy == 1.26.4
viam-sdk
pyinstaller
pylint
Expand Down

0 comments on commit 42aa3a7

Please sign in to comment.