Skip to content

Commit

Permalink
Update asyncio requirement to be more relaxed
Browse files Browse the repository at this point in the history
  • Loading branch information
SinaKhalili committed Oct 28, 2024
1 parent 58f97a6 commit 404f638
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
name = "driftpy"
version = "0.7.92"
description = "A Python client for the Drift DEX"
authors = ["x19 <https://twitter.com/[email protected]>", "bigz <https://twitter.com/bigz_pubkey>", "frank <https://twitter.com/soundsonacid>"]
authors = [
"x19 <https://twitter.com/[email protected]>",
"bigz <https://twitter.com/bigz_pubkey>",
"frank <https://twitter.com/soundsonacid>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/drift-labs/driftpy"
documentation = "https://drift-labs.github.io/driftpy/"

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.10"
anchorpy = "0.20.1"
solana = "^0.34.0"
requests = "^2.28.1"
Expand All @@ -22,7 +26,7 @@ aiosignal = "1.3.1"
anchorpy-core = "0.2.0"
anyio = "3.6.2"
apischema = "0.17.5"
async-timeout = "4.0.2"
async-timeout = "^4.0.2"
attrs = "22.1.0"
backoff = "2.2.1"
base58 = "2.1.1"
Expand Down Expand Up @@ -107,6 +111,6 @@ build-backend = "poetry.core.masonry.api"
asyncio_mode = "strict"

[tool.ruff]
exclude = [".git","__pycache__","docs/source/conf.py","old","build","dist"]
exclude = [".git", "__pycache__", "docs/source/conf.py", "old", "build", "dist"]
[tool.ruff.pycodestyle]
max-line-length = 88
2 changes: 1 addition & 1 deletion tests/ci/devnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def event_loop():

@pytest.fixture(scope="session")
def rpc_url():
return "https://api.devnet.solana.com"
return os.environ.get("DEVNET_RPC_ENDPOINT")


@mark.asyncio
Expand Down

0 comments on commit 404f638

Please sign in to comment.