Skip to content

Commit

Permalink
Chore: Update to python 3.13 (#1709)
Browse files Browse the repository at this point in the history
* Update to python 3.13

* Reformat files after ruff updates

* Fix mypy errors after update

* Update deps

* Update Python version link in README

Changed the Python version link from 3.13.1 to 3.13.2 for accuracy in the technologies section of the README file.
  • Loading branch information
rcmerlo authored Feb 6, 2025
1 parent a276496 commit 206d177
Show file tree
Hide file tree
Showing 66 changed files with 295 additions and 298 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
with:
python-version: "3.11"
python-version: "3.13"
- name: Install git-secrets in the repository
run: git secrets --install
- name: Install git-secrets aws register in the repository
Expand Down
24 changes: 12 additions & 12 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ name = "pypi"
aio-pika = "==9.5.*"
aiofiles = "==24.1.0"
aiohttp = "==3.11.*"
alembic = "==1.14.0"
alembic = "==1.14.*"
asyncpg = "==0.30.0"
azure-storage-blob = "==12.24.0"
azure-storage-blob = "==12.24.*"
bcrypt = "==4.2.1"
boto3 = "==1.35.*"
fastapi = "==0.115.6"
boto3 = "==1.36.*"
fastapi = "==0.115.*"
fastapi-mail = "==1.2.9"
firebase-admin = "==6.6.*"
httpx = "==0.28.*"
jinja2 = "==3.1.*"
more-itertools = "==10.5.0"
more-itertools = "==10.6.0"
nh3 = "==0.2.20"
pydantic = { extras = ["email"], version = "==1.10.18" }
pyjwt = "==2.10.1"
pymongo = "==4.10.1"
pymongo = "==4.10.*"
pyOpenSSL = "==24.3.*"
python-multipart = "==0.0.20"
redis = "==5.2.*"
Expand All @@ -34,9 +34,9 @@ taskiq-fastapi = "==0.3.*"
taskiq-redis = "==1.0.2"
typer = "==0.15.*"
uvicorn = { extras = ["standard"], version = "==0.34.*" }
ddtrace = "==2.*"
bytecode = "==0.16.0"
structlog = "==24.4.0"
ddtrace = "==2.20.*"
bytecode = "==0.16.*"
structlog = "==25.1.*"
asgi-correlation-id = "==4.3.4"


Expand All @@ -48,7 +48,7 @@ greenlet = "==3.1.0"
ipdb = "==0.13.13"
mypy = "==1.14.*"
nest-asyncio = "==1.6.0"
pre-commit = "==4.0.1"
pre-commit = "==4.1.*"
pudb = "==2024.1.3"
pydantic-factories = "==1.17.3"
pyld = "==2.0.4"
Expand All @@ -59,7 +59,7 @@ pytest-env = "==1.1.5"
pytest-lazy-fixtures = "==1.*"
pytest-mock = "==3.14.0"
reproschema = "==0.6.2"
ruff = "==0.8.*"
ruff = "==0.9.*"
types-aiofiles = "==24.1.0.*"
types-cachetools = "==5.5.0.*"
types-python-dateutil = "==2.9.0.*"
Expand All @@ -68,7 +68,7 @@ types-requests = "==2.32.0.*"
typing-extensions = "==4.12.2"

[requires]
python_version = "3.11"
python_version = "3.13"

[scripts]
cli = "python src/cli.py"
Loading

0 comments on commit 206d177

Please sign in to comment.