-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update python to 3.11 and upgrade dependencies
- Loading branch information
Jake Rosenberg
committed
Nov 8, 2023
1 parent
2ba9931
commit 79cf0f9
Showing
8 changed files
with
1,927 additions
and
1,156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.10-buster | ||
FROM python:3.11-buster | ||
|
||
EXPOSE 8000 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,19 @@ description = "" | |
authors = ["Jarosenb <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "3.10.10" | ||
uvicorn = {extras = ["standard"], version = "^0.15.0"} | ||
fastapi = "^0.70.0" | ||
agavepy = "^0.9.5" | ||
python = "^3.11" | ||
uvicorn = {extras = ["standard"], version = "^0.24.0"} | ||
fastapi = "^0.104.1" | ||
redis = "^4.0.2" | ||
zipfly = "^6.0.3" | ||
gunicorn = "^20.1.0" | ||
paramiko = "^3.3.1" | ||
requests = "^2.31.0" | ||
ipython = "^8.17.2" | ||
pickleshare = "^0.7.5" | ||
|
||
[tool.poetry.dev-dependencies] | ||
black = "^21.11b1" | ||
black = "^23.11.0" | ||
pytest = "^6.2.5" | ||
|
||
[build-system] | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters