Skip to content

upgrade pydantic to fix python 3.11 run issue #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
venv
__pycache__
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ arrow
fastapi==0.75.1
supabase~=0.3.0
python-dotenv~=0.19.2
pydantic~=1.9.0
pydantic~=1.10.0
starlette~=0.17
uvicorn
pybgpkit==0.2.1
pybgpkit==0.4.3
4 changes: 4 additions & 0 deletions start-debug.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash

python3 -m venv venv
pip3 install --upgrade pip
pip3 install -r requirements.txt

python3 -m uvicorn main:app --host 0.0.0.0 --reload