Skip to content

Commit 6239def

Browse files
committed
Merge remote-tracking branch 'origin/TheWCKD-1s_timeframe_feature' into develop
# Conflicts: # .github/workflows/docker_update_readme.yml # docker/Dockerfile.armhf # docs/requirements-docs.txt # requirements.txt
2 parents 859cac0 + 6cea9ea commit 6239def

File tree

5 files changed

+54
-27
lines changed

5 files changed

+54
-27
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Update Docker Hub Description
2+
on:
3+
push:
4+
branches:
5+
- stable
6+
7+
jobs:
8+
dockerHubDescription:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Docker Hub Description
13+
uses: peter-evans/dockerhub-description@v4
14+
env:
15+
DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME }}
16+
DOCKERHUB_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
17+
DOCKERHUB_REPOSITORY: freqtradeorg/freqtrade

docker/Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11.8-slim-bookworm as base
1+
FROM python:3.12.0b4-slim-bullseye as base
22

33
# Setup env
44
ENV LANG C.UTF-8

docs/requirements-docs.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
markdown==3.6
1+
markdown==3.5.2
22
mkdocs==1.5.3
3-
mkdocs-material==9.5.16
3+
mkdocs-material==9.5.3
44
mdx_truly_sane_lists==1.3
5-
pymdown-extensions==10.7.1
5+
pymdown-extensions==10.5
66
jinja2==3.1.3

requirements-freqai.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ lightgbm==4.3.0
1010
xgboost==2.0.3
1111
tensorboard==2.16.2
1212
datasieve==0.1.7
13+
14+
numpy>=1.22.2 # not directly required, pinned by Snyk to avoid a vulnerability
15+
pillow>=10.2.0 # not directly required, pinned by Snyk to avoid a vulnerability
16+
fonttools>=4.43.0 # not directly required, pinned by Snyk to avoid a vulnerability
17+

requirements.txt

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,61 @@
1-
numpy==1.26.4
2-
pandas==2.2.1
1+
numpy==1.26.3
2+
pandas==2.1.4
33
pandas-ta==0.3.14b
44

5-
ccxt==4.2.87
6-
cryptography==42.0.5
7-
aiohttp==3.9.3
8-
SQLAlchemy==2.0.29
9-
python-telegram-bot==21.0.1
5+
ccxt==3.1.44
6+
cryptography==42.0.2; platform_machine != 'armv7l'
7+
cryptography==42.0.2; platform_machine == 'armv7l'
8+
aiohttp==3.9.0
9+
SQLAlchemy==2.0.16
10+
python-telegram-bot==20.3
11+
1012
# can't be hard-pinned due to telegram-bot pinning httpx with ~
1113
httpx>=0.24.1
1214
arrow==1.3.0
13-
cachetools==5.3.3
15+
cachetools==5.3.2
1416
requests==2.31.0
15-
urllib3==2.2.1
16-
jsonschema==4.21.1
17+
18+
urllib3==2.0.7
19+
20+
jsonschema==4.19.1
21+
1722
TA-Lib==0.4.28
18-
technical==1.4.3
23+
technical==1.4.2
1924
tabulate==0.9.0
2025
pycoingecko==3.1.0
2126
jinja2==3.1.3
2227
tables==3.9.1
2328
joblib==1.3.2
24-
rich==13.7.1
25-
pyarrow==15.0.2; platform_machine != 'armv7l'
29+
rich==13.7.0
30+
pyarrow==14.0.2; platform_machine != 'armv7l'
2631

2732
# find first, C search in arrays
2833
py_find_1st==1.1.6
2934

3035
# Load ticker files 30% faster
31-
python-rapidjson==1.16
36+
python-rapidjson==1.14
3237
# Properly format api responses
33-
orjson==3.10.0
38+
orjson==3.9.10
3439

3540
# Notify systemd
3641
sdnotify==0.3.2
3742

3843
# API Server
39-
fastapi==0.110.0
40-
pydantic==2.6.4
41-
uvicorn==0.29.0
44+
fastapi==0.103.2
45+
pydantic==2.4.0
46+
uvicorn==0.23.2
47+
4248
pyjwt==2.8.0
4349
aiofiles==23.2.1
44-
psutil==5.9.8
50+
psutil==5.9.7
4551

4652
# Support for colorized terminal output
4753
colorama==0.4.6
4854
# Building config files interactively
4955
questionary==2.0.1
5056
prompt-toolkit==3.0.36
5157
# Extensions to datetime library
52-
python-dateutil==2.9.0.post0
53-
pytz==2024.1
58+
python-dateutil==2.8.2
5459

5560
#Futures
5661
schedule==1.2.1
@@ -59,5 +64,5 @@ schedule==1.2.1
5964
websockets==12.0
6065
janus==1.0.0
6166

62-
ast-comments==1.2.2
63-
packaging==24.0
67+
ast-comments==1.2.1
68+
packaging==23.2

0 commit comments

Comments
 (0)