Skip to content

Commit b863c68

Browse files
authoredJan 7, 2025
Merge pull request freqtrade#11200 from freqtrade/feat/remove_hdf5
Remove hdf5 support
2 parents 3a8aba1 + ecd2d01 commit b863c68

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1768
-1736
lines changed
 

‎.github/workflows/ci.yml

+5
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ jobs:
9191
run: |
9292
python build_helpers/extract_config_json_schema.py
9393
94+
- name: Run command docs partials extract
95+
# This should be kept before the repository check to ensure that the docs are up-to-date
96+
run: |
97+
python build_helpers/create_command_partials.py
98+
9499
- name: Check for repository changes
95100
run: |
96101
if [ -n "$(git status --porcelain)" ]; then

‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ENV FT_APP_ENV="docker"
1111
# Prepare environment
1212
RUN mkdir /freqtrade \
1313
&& apt-get update \
14-
&& apt-get -y install sudo libatlas3-base curl sqlite3 libhdf5-serial-dev libgomp1 \
14+
&& apt-get -y install sudo libatlas3-base curl sqlite3 libgomp1 \
1515
&& apt-get clean \
1616
&& useradd -u 1000 -G sudo -U -m -s /bin/bash ftuser \
1717
&& chown ftuser:ftuser /freqtrade \

0 commit comments

Comments
 (0)