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       | anyio      | 4.1.0  | 4.2.0  |
| pypi       | moto       | 4.2.11 | 4.2.12 |
| pypi       | ruff       | 0.1.7  | 0.1.8  |
| pypi       | bcrypt     | 4.1.1  | 4.1.2  |
| pypi       | sentry_sdk | 1.38.0 | 1.39.1 |
  • Loading branch information
renovate[bot] authored and wilbrdt committed Dec 18, 2023
1 parent 6e6df94 commit b04ddd1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ and this project adheres to
in the video and virtual classroom profiles. [BC]
- Upgrade base python version to 3.12 for the development stack and Docker
image
- Upgrade `bcrypt` to `4.1.2`
- Upgrade `cachetools` to `5.3.2`
- Upgrade `bcrypt` to `>=4.0.0`
- Upgrade `fastapi` to `0.105.0`
- Upgrade `sentry_sdk` to `1.38.0`
- Upgrade `sentry_sdk` to `1.39.1`
- Upgrade `uvicorn` to `0.24.0.post1`

### Fixed
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ cli = [
"sentry-sdk[fastapi]>=1.9.0",
]
dev = [
"anyio<4.1.1", # unpin until fastapi supports new major version of anyio
"anyio<4.2.1", # unpin until fastapi supports new major version of anyio
"black==23.12.0",
"cryptography==41.0.7",
"factory-boy==3.3.0",
Expand All @@ -98,7 +98,7 @@ dev = [
"mkdocs-click==0.8.1",
"mkdocs-material==9.5.2",
"mkdocstrings[python-legacy]==0.24.0",
"moto==4.2.11",
"moto==4.2.12",
"mypy==1.7.1",
"neoteroi-mkdocs==1.0.4",
"pyfakefs==5.3.2",
Expand All @@ -109,18 +109,18 @@ dev = [
"pytest-httpx<0.23.0", # pin as Python 3.8 is no longer supported from release 0.23.0
"requests-mock==1.11.0",
"responses==0.24.1",
"ruff==0.1.7",
"ruff==0.1.8",
"types-python-dateutil == 2.8.19.14",
"types-python-jose == 3.3.4.8",
"types-requests<2.31.0.11",
"types-cachetools ==5.3.0.7",
]
lrs = [
"bcrypt==4.1.1",
"bcrypt==4.1.2",
"fastapi==0.105.0",
"cachetools==5.3.2",
"httpx<0.25.0", # pin as `pytest-httpx<0.23.0` requires `httpx==0.24.*`
"sentry_sdk==1.38.0",
"sentry_sdk==1.39.1",
"python-jose==3.3.0",
"uvicorn[standard]==0.24.0.post1",
]
Expand Down

0 comments on commit b04ddd1

Please sign in to comment.