Skip to content

Commit

Permalink
⬆️(project) upgrade python dependencies
Browse files Browse the repository at this point in the history
| datasource | package           | from    | to      |
| ---------- | ----------------- | ------- | ------- |
| pypi       | fastapi           | 0.114.0 | 0.114.2 |
| pypi       | psycopg           | 3.2.1   | 3.2.2   |
| pypi       | pydantic-settings | 2.4.0   | 2.5.2   |
| pypi       | pytest            | 8.3.2   | 8.3.3   |
| pypi       | ruff              | 0.6.4   | 0.6.5   |
| pypi       | setuptools        | 74.1.2  | 75.1.0  |
  • Loading branch information
renovate[bot] authored and jmaupetit committed Sep 16, 2024
1 parent ee6d2bb commit 494d367
Show file tree
Hide file tree
Showing 8 changed files with 459 additions and 406 deletions.
4 changes: 3 additions & 1 deletion src/api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ and this project adheres to
### Changed

- Add geo-boundaries population and area fields
- Upgrade fastapi to `0.114.0`
- Upgrade fastapi to `0.114.2`
- Upgrade Psycopg to `3.2.2`
- Upgrade Pydantic to `2.9.1`
- Upgrade pydantic-settings to `2.5.2`
- Upgrade pyinstrument to `4.7.3`
- Upgrade sentry-sdk to `74.1.2`

Expand Down
12 changes: 6 additions & 6 deletions src/api/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ name = "pypi"
alembic = "==1.13.2"
annotated-types = "==0.7.0"
email-validator = "==2.2.0"
fastapi = "==0.114.0"
fastapi = "==0.114.2"
geoalchemy2 = {extras = ["shapely"], version = "==0.15.2"}
geopandas = "==1.0.1"
httpx = {extras = ["cli"], version = "==0.27.2"}
pandas = "==2.2.2"
passlib = {extras = ["bcrypt"], version = "==1.7.4"}
psycopg = {extras = ["pool", "binary"], version = "==3.2.1"}
psycopg = {extras = ["pool", "binary"], version = "==3.2.2"}
pyarrow = "==17.0.0"
pydantic-extra-types = {extras = ["all"], version = "==2.9.0"}
pydantic-settings = "==2.4.0"
pydantic-settings = "==2.5.2"
pyinstrument = "==4.7.3"
pyjwt = "==2.9.0"
python-multipart = "==0.0.9"
questionary = "==2.0.1"
sentry-sdk = {extras = ["fastapi"], version = "==2.14.0"}
setuptools = "==74.1.2"
setuptools = "==75.1.0"
sqlalchemy-timescaledb = "==0.4.1"
sqlmodel = "==0.0.22"
typer = "==0.12.5"
Expand All @@ -36,10 +36,10 @@ mypy = "==1.11.2"
pandas-stubs = "==2.2.2.240909"
polyfactory = "==2.16.2"
pyinstrument = "==4.7.3"
pytest = "==8.3.2"
pytest = "==8.3.3"
pytest-cov = "==5.0.0"
pytest-httpx = "==0.30.0"
ruff = "==0.6.4"
ruff = "==0.6.5"
types-passlib = "==1.7.7.20240819"
types-python-jose = "==3.3.4.20240106"

Expand Down
497 changes: 262 additions & 235 deletions src/api/Pipfile.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to
### Changed

- Upgrade Pydantic to `2.9.1`
- Upgrade pydantic-settings to `2.5.2`

## [0.2.0] - 2024-09-05

Expand Down
50 changes: 25 additions & 25 deletions src/client/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/opendata/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ and this project adheres to

## [Unreleased]

### Changed

- Upgrade Psycopg to `3.2.2`

### Fixed

- Improve Enum representation to fit with the statique schema
Expand Down
4 changes: 2 additions & 2 deletions src/opendata/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ name = "pypi"

[packages]
data7 = "==0.7.0"
psycopg = {extras = ["binary", "pool"], version = "==3.2.1"}
psycopg = {extras = ["binary", "pool"], version = "==3.2.2"}

[dev-packages]
honcho = "==1.1.0"
setuptools = "==74.1.2"
setuptools = "==75.1.0"

[requires]
python_version = "3.12"
Loading

0 comments on commit 494d367

Please sign in to comment.