Skip to content

Commit 2ca1c86

Browse files
Abel ArmoaAbel Armoa
authored andcommitted
(fix) Quick patch to solve pipenv issue with pysha3 library with Python 3.11. Resctricting Python version to <3.11 until we remove pysha3 requirement
1 parent 6684080 commit 2ca1c86

File tree

4 files changed

+29
-51
lines changed

4 files changed

+29
-51
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ pytest = "*"
2525
pytest-asyncio = "*"
2626

2727
[requires]
28-
python_version = "3"
28+
python_version = "3.9"

Pipfile.lock

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ make tests
8787
```
8888

8989
### Changelogs
90-
**0.6.3**(change before release)
90+
**0.6.4**(change before release)
9191
* Change logging logic to use different loggers for each module and class
9292
* Solved issue preventing requesting spot and derivative historical orders for more than one market_id
9393
* Add `pytest` as a development dependency to implement and run unit tests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
URL = "https://github.com/InjectiveLabs/sdk-python"
1717
1818
AUTHOR = "Injective Labs"
19-
REQUIRES_PYTHON = ">=3.7.0"
19+
REQUIRES_PYTHON = ">=3.7, <3.11"
2020
VERSION = "0.6.4-pre"
2121

2222
REQUIRED = [

0 commit comments

Comments
 (0)