Skip to content

Commit

Permalink
Fix python dependency version (#522)
Browse files Browse the repository at this point in the history
### Changes

Fix issue with Python dependency version in 4.4.1

### References

fixes #517

### Testing

1. Start a new python project with:

```
[tool.poetry.dependencies]
python = ">=3.10"
```

In your pyproject.toml file

3. Add `auth0-python` with poetry `poetry add ../path/to/auth0-python`
  • Loading branch information
adamjmcgrath authored Aug 31, 2023
2 parents 8c75c6c + 5e559bd commit 5e4f09a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ files = ["*/__init__.py"]
folders = [{ path = "auth0" }]

[tool.poetry.dependencies]
python = "^3.7"
python = ">=3.7"
aiohttp = "^3.8.5"
pyjwt = "^2.8.0"
cryptography = "^41.0.3" # pyjwt has a weak dependency on cryptography
Expand Down

0 comments on commit 5e4f09a

Please sign in to comment.