File tree Expand file tree Collapse file tree 5 files changed +54
-27
lines changed
Expand file tree Collapse file tree 5 files changed +54
-27
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- FROM python:3.11.8 -slim-bookworm as base
1+ FROM python:3.12.0b4 -slim-bullseye as base
22
33# Setup env
44ENV LANG C.UTF-8
Original file line number Diff line number Diff line change 1- markdown==3.6
1+ markdown==3.5.2
22mkdocs==1.5.3
3- mkdocs-material==9.5.16
3+ mkdocs-material==9.5.3
44mdx_truly_sane_lists==1.3
5- pymdown-extensions==10.7.1
5+ pymdown-extensions==10.5
66jinja2==3.1.3
Original file line number Diff line number Diff line change @@ -10,3 +10,8 @@ lightgbm==4.3.0
1010xgboost==2.0.3
1111tensorboard==2.16.2
1212datasieve==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+
Original file line number Diff line number Diff line change 1- numpy == 1.26.4
2- pandas == 2.2.1
1+ numpy == 1.26.3
2+ pandas == 2.1.4
33pandas-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 ~
1113httpx >= 0.24.1
1214arrow == 1.3.0
13- cachetools == 5.3.3
15+ cachetools == 5.3.2
1416requests == 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+
1722TA-Lib == 0.4.28
18- technical == 1.4.3
23+ technical == 1.4.2
1924tabulate == 0.9.0
2025pycoingecko == 3.1.0
2126jinja2 == 3.1.3
2227tables == 3.9.1
2328joblib == 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
2833py_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
3641sdnotify == 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+
4248pyjwt == 2.8.0
4349aiofiles == 23.2.1
44- psutil == 5.9.8
50+ psutil == 5.9.7
4551
4652# Support for colorized terminal output
4753colorama == 0.4.6
4854# Building config files interactively
4955questionary == 2.0.1
5056prompt-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
5661schedule == 1.2.1
@@ -59,5 +64,5 @@ schedule==1.2.1
5964websockets == 12.0
6065janus == 1.0.0
6166
62- ast-comments == 1.2.2
63- packaging == 24.0
67+ ast-comments == 1.2.1
68+ packaging == 23.2
You can’t perform that action at this time.
0 commit comments