Skip to content

Commit ca214cc

Browse files
committed
update ccxt
1 parent e2b675d commit ca214cc

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

bitbot.dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ RUN python3 -m pip install --upgrade pip --no-cache-dir
1515
COPY requirements.txt .
1616

1717
RUN python3 -m pip install -v \
18-
--prefer-binary \
18+
--only-binary :all: \
1919
-r requirements.txt \
20+
--index-url https://pypi.org/simple \
2021
--extra-index-url https://www.piwheels.org/simple \
2122
--no-cache-dir
2223

config-server.dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ RUN apt-get update -y && \
2020
# install python reqs
2121
COPY src/config_server/requirements.txt .
2222
RUN python3 -m pip install -v \
23-
--prefer-binary \
23+
--only-binary :all: \
2424
--no-cache-dir \
2525
-r requirements.txt \
26+
--index-url https://pypi.org/simple \
2627
--extra-index-url https://www.piwheels.org/simple
2728

2829
# prep app code

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ contourpy==1.2.1
66
matplotlib==3.10.0
77
mplfinance>=0.12.10b0
88
watchdog==6.0.0
9-
ccxt==4.4.40
9+
ccxt==4.4.91
1010
inky==2.0.0
1111
yfinance==0.2.54
1212
tzlocal

src/config_server/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cryptography==42.0.8
22
flask==3.1.0
33
pillow
4-
ccxt==4.4.40
4+
ccxt==4.4.91
55
yfinance==0.2.51

0 commit comments

Comments
 (0)