Merge pull request #11646 from freqtrade/deps/numpy2

Bump numpy to 2.x
This commit is contained in:
Matthias
2025-06-01 09:13:58 +02:00
committed by GitHub
17 changed files with 16 additions and 9 deletions

View File

@@ -35,7 +35,7 @@ ENV LD_LIBRARY_PATH /usr/local/lib
# Install dependencies
COPY --chown=ftuser:ftuser requirements.txt requirements-hyperopt.txt /freqtrade/
USER ftuser
RUN pip install --user --no-cache-dir "numpy<2.0" \
RUN pip install --user --no-cache-dir "numpy<3.0" \
&& pip install --user --no-cache-dir -r requirements-hyperopt.txt
# Copy dependencies to runtime-image

View File

@@ -3,7 +3,7 @@
python -m pip install --upgrade pip
python -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')"
pip install -U wheel "numpy<2"
pip install -U wheel "numpy<3"
pip install --only-binary ta-lib --find-links=build_helpers\ ta-lib
pip install -r requirements-dev.txt

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -34,7 +34,7 @@ COPY build_helpers/* /tmp/
# Install dependencies
COPY --chown=ftuser:ftuser requirements.txt /freqtrade/
USER ftuser
RUN pip install --user --no-cache-dir "numpy<2" \
RUN pip install --user --no-cache-dir "numpy<3" \
&& pip install --user --no-index --find-links /tmp/ pyarrow TA-Lib \
&& pip install --user --no-cache-dir -r requirements.txt

View File

View File

@@ -38,10 +38,10 @@ dependencies = [
"httpx>=0.24.1",
"urllib3",
"jsonschema",
"numpy<2.0",
"numpy>2.0,<3.0",
"pandas>=2.2.0,<3.0",
"TA-Lib",
"pandas-ta",
"ft-pandas-ta",
"technical",
"tabulate",
"pycoingecko>=3.2.0",
@@ -207,6 +207,14 @@ plugins = [
module = "tests.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = [
"freqtrade.templates.*",
"tests.strategy.strats"
]
# Disable attr-defined check due to ta-lib not having type stubs
disable_error_code = "attr-defined"
[tool.pyright]
include = ["freqtrade", "ft_client"]
exclude = [

View File

@@ -5,7 +5,6 @@
torch==2.7.0; sys_platform != 'darwin' or platform_machine != 'x86_64'
gymnasium==0.29.1
# SB3 >=2.5.0 depends on torch 2.3.0 - which implies it dropped support x86 macos
stable_baselines3==2.4.1; sys_platform == 'darwin' and platform_machine == 'x86_64'
stable_baselines3==2.5.0; sys_platform != 'darwin' or platform_machine != 'x86_64'
sb3_contrib>=2.2.1
# Progress bar for stable-baselines3 and sb3-contrib

View File

@@ -1,8 +1,8 @@
numpy==1.26.4
numpy==2.2.6
pandas==2.2.3
bottleneck==1.4.2
numexpr==2.10.2
pandas-ta==0.3.14b
ft-pandas-ta==0.3.15
ccxt==4.4.85
cryptography==45.0.3
@@ -17,7 +17,7 @@ requests==2.32.3
urllib3==2.4.0
certifi==2025.4.26
jsonschema==4.23.0
TA-Lib==0.4.38
ta-lib==0.5.4
technical==1.5.0
tabulate==0.9.0
pycoingecko==3.2.0

View File