Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,20 @@ jobs:
run: |
sudo apt install bubblewrap
pip install --user --upgrade pip
pip install --user pipx
pip install --user setuptools
pipx ensurepath
pipx install poetry
poetry config virtualenvs.in-project true

- name: Install Poetry
uses: snok/install-poetry@v1
with:
# Keep Poetry pinned because the latest Poetry bootstrap dependencies can
# use Python 3.10-only APIs while this workflow still tests Python 3.9.
version: "2.2.1"
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true

- name: Install dependencies
run: |
poetry install --with dev
poetry self add "poetry-dynamic-versioning[plugin]"

Expand All @@ -75,4 +84,4 @@ jobs:
name: Upload coverage
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # pin@6.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

### 1. Install the SDK

_This library requires Python 3.9+._
_This library requires Python 3.9.2+._

```shell
pip install auth0-fastapi-api
Expand Down
Loading
Loading