Skip to content

Commit

Permalink
fix: weird requests version (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno authored Jul 18, 2024
1 parent 357d1cb commit 7cd8d17
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 10

strategy:
matrix:
python-version:
- 3.12.4
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: ${{ matrix.python-version }}

- name: Test install
run: |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distro>=1.7.0
GitPython>=3.1.3
requests>=2.32.0
requests>=2.32.3
rich>=9.2.0
urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability

0 comments on commit 7cd8d17

Please sign in to comment.