Skip to content

Commit

Permalink
Merge pull request #11 from sijokun/dev
Browse files Browse the repository at this point in the history
0.6.3
  • Loading branch information
sijokun authored Mar 8, 2024
2 parents 3468d1e + 4db3761 commit 1e4ecbb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

runs-on: ubuntu-latest

Expand Down
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "async_fastapi_jwt_auth"
version = "0.6.2"
version = "0.6.3"
description = "Async fork of FastAPI extension that provides JWT Auth support (secure, easy to use and lightweight)"
authors = ["Yan Khachko <a@slnk.icu>"]
readme = "README.md"
Expand All @@ -12,6 +12,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
Expand All @@ -20,19 +21,19 @@ classifiers = [

[tool.poetry.dependencies]
python = ">=3.8"
fastapi = "^0.100.1"
PyJWT = "^2.8.0"
fastapi = "0.110.0"
PyJWT = "2.8.0"
httpx = ">=0.23.3"
pydantic-settings = "^2.0.2"
cryptography = "^41.0.3"
pydantic-settings = "2.0.2"
cryptography = "42.0.5"

[tool.poetry.extras]
asymmetric = ["cryptography"]

[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
poethepoet = "^0.21.1"
pytest = "^7.4.0"
pytest = "7.4.0"
uvicorn = "^0.23.2"
pytest-asyncio = "^0.21.1"
coveralls = "==3.3.1"
Expand Down

0 comments on commit 1e4ecbb

Please sign in to comment.