Skip to content

Commit 9569c6c

Browse files
authored
Merge pull request #408 from InjectiveLabs/chore/enforce_python_version_compatibility
[CHORE] enforce python version compatibility
2 parents 98260f7 + f6220b1 commit 9569c6c

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
run-tests:
99
strategy:
1010
matrix:
11-
python: ["3.10", "3.11", "3.12"]
11+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1212
os: [ubuntu-latest, macos-latest]
1313
runs-on: ${{ matrix.os }}
1414
env:

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "injective-py"
3-
version = "1.13.0"
3+
version = "1.13.1"
44
description = "Injective Python SDK, with Exchange API Client"
55
authors = ["Injective Labs <contact@injectivelabs.org>"]
66
license = "Apache-2.0"
@@ -21,7 +21,7 @@ include = [
2121
]
2222

2323
[tool.poetry.dependencies]
24-
python = "^3.10"
24+
python = ">=3.10,<3.13"
2525
aiohttp = "^3.9.4" # Version dependency due to https://github.com/InjectiveLabs/sdk-python/security/dependabot/18
2626
bech32 = "*"
2727
bip32 = "*"
@@ -82,7 +82,7 @@ skip_glob = ["pyinjective/proto/*", ".idea/*"]
8282

8383
[tool.black]
8484
line-length = 120
85-
target-version = ["py39", "py310", "py311"]
85+
target-version = ["py310", "py311", "py312"]
8686
include = '\.pyi?$'
8787
# 'extend-exclude' excludes files or directories in addition to the defaults
8888
extend-exclude = '''

0 commit comments

Comments
 (0)