This repository was archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* support python 3.11 (#19) * remove logs in httpx * enable python 3.11 compatibility * support WyvernAPI with aiohttp * create the beta1 version for 0.0.8 (#21) * use Enum to support both py<3.11 and py3.11 (#22) * use Enum to support both py<3.11 and py3.11 * fix entity_type typing * still use str for string enums for backward compatibility * bump ci python version * 0.0.8-beta2 * remove print in wyvern api
- Loading branch information
1 parent
c3c3e6a
commit 0c4000e
Showing
20 changed files
with
723 additions
and
129 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,5 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
python-version: "3.11" | ||
- uses: pre-commit/[email protected] |
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 |
---|---|---|
|
@@ -61,6 +61,7 @@ repos: | |
- tqdm | ||
- types-tqdm | ||
- nest-asyncio | ||
- aiohttp | ||
exclude: "^tests/" | ||
|
||
# Check for spelling | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "wyvern-ai" | ||
version = "0.0.7" | ||
version = "0.0.8-beta2" | ||
description = "" | ||
authors = ["Wyvern AI <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -9,7 +9,7 @@ packages = [ | |
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.11" | ||
python = ">=3.8,<3.12" | ||
pydantic = "^1.10.4" | ||
fastapi = "^0.95.2" | ||
uvicorn = "^0.22.0" | ||
|
@@ -19,7 +19,6 @@ pyhumps = "^3.8.0" | |
python-dotenv = "^1.0.0" | ||
pandas = "1.5.3" | ||
feast = {extras = ["redis", "snowflake"], version = "^0.31.1"} | ||
httpx = "^0.24.1" | ||
snowflake-connector-python = "3.0.3" | ||
boto3 = "^1.26.146" | ||
ddtrace = "^1.14.0" | ||
|
@@ -30,6 +29,7 @@ tqdm = "^4.65.0" | |
nest-asyncio = "^1.5.7" | ||
eppo-server-sdk = "^1.2.2" | ||
scipy = "1.10.1" | ||
aiohttp = {extras = ["speedups"], version = "^3.8.5"} | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
|
@@ -46,6 +46,7 @@ types-boto3 = "^1.0.2" | |
pyinstrument = "^4.4.0" | ||
pytest-dotenv = "^0.5.2" | ||
ipykernel = "^6.25.0" | ||
aioresponses = "^0.7.4" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
|
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
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
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
Oops, something went wrong.