Skip to content

Commit

Permalink
Merge pull request #38 from questionlp/develop
Browse files Browse the repository at this point in the history
Change Pydantic dependency to <2 instead of ==1.10.12
  • Loading branch information
questionlp authored Aug 29, 2023
2 parents 309520a + e2cf514 commit 462951e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes

## 2.3.1

### Component Changes

- Change pydantic version pin from "==1.10.12" to "<2" to include potential future updates to 1.x while blocking 2.x or higher

## 2.3.0

### Application Changes
Expand Down
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing import Any, Dict

API_VERSION = "2.0"
APP_VERSION = "2.3.0"
APP_VERSION = "2.3.1"


def load_config(
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pycodestyle==2.11.0
pytest==7.4.0
black==23.7.0

pydantic==1.10.12
pydantic<2
fastapi==0.103.0
uvicorn[standard]==0.23.2
gunicorn==21.2.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pydantic==1.10.12
pydantic<2
fastapi==0.103.0
uvicorn[standard]==0.23.2
gunicorn==21.2.0
Expand Down

0 comments on commit 462951e

Please sign in to comment.