Skip to content

Commit

Permalink
Update version to 1.4.4 and require Python 3.10 in setup.py; synchron…
Browse files Browse the repository at this point in the history
…ize version in version.py
  • Loading branch information
saleh-mir committed Jan 4, 2025
1 parent 5cd7f0d commit 91e0db3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jesse/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.4.3'
__version__ = '1.4.4'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

# also change in version.py
VERSION = "1.4.3"
VERSION = "1.4.4"
DESCRIPTION = "A trading framework for cryptocurrencies"
with open("requirements.txt", "r", encoding="utf-8") as f:
REQUIRED_PACKAGES = f.read().splitlines()
Expand Down Expand Up @@ -35,7 +35,7 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
python_requires='>=3.10',
include_package_data=True,
package_data={
'': ['*.dll', '*.dylib', '*.so', '*.json'],
Expand Down

0 comments on commit 91e0db3

Please sign in to comment.