mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Compare commits
13 Commits
6d2572e347
...
167e43cbef
Author | SHA1 | Date | |
---|---|---|---|
|
167e43cbef | ||
|
d8cb407c25 | ||
|
9452afe3f7 | ||
|
8dc6d9ce7d | ||
|
bf4b8a318d | ||
|
20f6022050 | ||
|
65e6c737cd | ||
|
09c1459411 | ||
|
a7f46500ed | ||
|
c73fa2b0eb | ||
|
db4c4b971a | ||
|
11d6ec33b3 | ||
|
ad8e6e7d67 |
|
@ -16,7 +16,7 @@ repos:
|
||||||
additional_dependencies:
|
additional_dependencies:
|
||||||
- types-cachetools==5.5.0.20240820
|
- types-cachetools==5.5.0.20240820
|
||||||
- types-filelock==3.2.7
|
- types-filelock==3.2.7
|
||||||
- types-requests==2.32.0.20240907
|
- types-requests==2.32.0.20240914
|
||||||
- types-tabulate==0.9.0.20240106
|
- types-tabulate==0.9.0.20240106
|
||||||
- types-python-dateutil==2.9.0.20240906
|
- types-python-dateutil==2.9.0.20240906
|
||||||
- SQLAlchemy==2.0.34
|
- SQLAlchemy==2.0.34
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
-r docs/requirements-docs.txt
|
-r docs/requirements-docs.txt
|
||||||
|
|
||||||
coveralls==4.0.1
|
coveralls==4.0.1
|
||||||
ruff==0.6.4
|
ruff==0.6.5
|
||||||
mypy==1.11.2
|
mypy==1.11.2
|
||||||
pre-commit==3.8.0
|
pre-commit==3.8.0
|
||||||
pytest==8.3.3
|
pytest==8.3.3
|
||||||
|
@ -27,6 +27,6 @@ nbconvert==7.16.4
|
||||||
# mypy types
|
# mypy types
|
||||||
types-cachetools==5.5.0.20240820
|
types-cachetools==5.5.0.20240820
|
||||||
types-filelock==3.2.7
|
types-filelock==3.2.7
|
||||||
types-requests==2.32.0.20240907
|
types-requests==2.32.0.20240914
|
||||||
types-tabulate==0.9.0.20240106
|
types-tabulate==0.9.0.20240106
|
||||||
types-python-dateutil==2.9.0.20240906
|
types-python-dateutil==2.9.0.20240906
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
-r requirements-plot.txt
|
-r requirements-plot.txt
|
||||||
|
|
||||||
# Required for freqai
|
# Required for freqai
|
||||||
scikit-learn==1.5.1
|
scikit-learn==1.5.2
|
||||||
joblib==1.4.2
|
joblib==1.4.2
|
||||||
catboost==1.2.7; 'arm' not in platform_machine
|
catboost==1.2.7; 'arm' not in platform_machine
|
||||||
# Pin Matplotlib - it's depended on by catboost
|
# Pin Matplotlib - it's depended on by catboost
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
# Required for hyperopt
|
# Required for hyperopt
|
||||||
scipy==1.14.1; python_version >= "3.10"
|
scipy==1.14.1; python_version >= "3.10"
|
||||||
scipy==1.13.1; python_version < "3.10"
|
scipy==1.13.1; python_version < "3.10"
|
||||||
scikit-learn==1.5.1
|
scikit-learn==1.5.2
|
||||||
ft-scikit-optimize==0.9.2
|
ft-scikit-optimize==0.9.2
|
||||||
filelock==3.16.0
|
filelock==3.16.0
|
||||||
|
|
|
@ -4,7 +4,7 @@ bottleneck==1.4.0
|
||||||
numexpr==2.10.1
|
numexpr==2.10.1
|
||||||
pandas-ta==0.3.14b
|
pandas-ta==0.3.14b
|
||||||
|
|
||||||
ccxt==4.3.98
|
ccxt==4.4.3
|
||||||
cryptography==42.0.8; platform_machine == 'armv7l'
|
cryptography==42.0.8; platform_machine == 'armv7l'
|
||||||
cryptography==43.0.1; platform_machine != 'armv7l'
|
cryptography==43.0.1; platform_machine != 'armv7l'
|
||||||
aiohttp==3.10.5
|
aiohttp==3.10.5
|
||||||
|
@ -26,7 +26,7 @@ jinja2==3.1.4
|
||||||
tables==3.9.1; python_version < "3.10"
|
tables==3.9.1; python_version < "3.10"
|
||||||
tables==3.10.1; python_version >= "3.10"
|
tables==3.10.1; python_version >= "3.10"
|
||||||
joblib==1.4.2
|
joblib==1.4.2
|
||||||
rich==13.8.0
|
rich==13.8.1
|
||||||
pyarrow==17.0.0; platform_machine != 'armv7l'
|
pyarrow==17.0.0; platform_machine != 'armv7l'
|
||||||
|
|
||||||
# find first, C search in arrays
|
# find first, C search in arrays
|
||||||
|
@ -42,7 +42,7 @@ sdnotify==0.3.2
|
||||||
|
|
||||||
# API Server
|
# API Server
|
||||||
fastapi==0.114.2
|
fastapi==0.114.2
|
||||||
pydantic==2.9.0
|
pydantic==2.9.1
|
||||||
uvicorn==0.30.6
|
uvicorn==0.30.6
|
||||||
pyjwt==2.9.0
|
pyjwt==2.9.0
|
||||||
aiofiles==24.1.0
|
aiofiles==24.1.0
|
||||||
|
|
Loading…
Reference in New Issue
Block a user