diff --git a/pyproject.toml b/pyproject.toml index c5aff657..bd3bc077 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,14 +2,18 @@ name = "driftpy" version = "0.7.92" description = "A Python client for the Drift DEX" -authors = ["x19 ", "bigz ", "frank "] +authors = [ + "x19 ", + "bigz ", + "frank ", +] 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" @@ -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" @@ -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 diff --git a/tests/ci/devnet.py b/tests/ci/devnet.py index 6f451d11..17182323 100644 --- a/tests/ci/devnet.py +++ b/tests/ci/devnet.py @@ -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