From f5ba34addfc90206edf160e8710c21ba81d23305 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Fri, 14 Sep 2018 14:28:05 +0200 Subject: [PATCH 01/12] Update ccxt from 1.17.283 to 1.17.291 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 04aab1954..b9e5ff08e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ccxt==1.17.283 +ccxt==1.17.291 SQLAlchemy==1.2.11 python-telegram-bot==11.1.0 arrow==0.12.1 From f4d26961c87b6942b4afa2faf000522cbec8fc49 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sat, 15 Sep 2018 14:28:05 +0200 Subject: [PATCH 02/12] Update ccxt from 1.17.291 to 1.17.294 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b9e5ff08e..cd33410ea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ccxt==1.17.291 +ccxt==1.17.294 SQLAlchemy==1.2.11 python-telegram-bot==11.1.0 arrow==0.12.1 From 14961e2e38c2bcd10d366e62a8738f842512bea2 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 16 Sep 2018 14:28:06 +0200 Subject: [PATCH 03/12] Update ccxt from 1.17.294 to 1.17.300 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cd33410ea..19e19c13b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ccxt==1.17.294 +ccxt==1.17.300 SQLAlchemy==1.2.11 python-telegram-bot==11.1.0 arrow==0.12.1 From 6aa18bddc9cd012bf25f46028e59eae116f68463 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Sun, 16 Sep 2018 17:34:01 +0200 Subject: [PATCH 04/12] fixed being --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 02b870209..1633bbf13 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ The project is currently setup in two main branches: - `develop` - This branch has often new features, but might also cause breaking changes. - `master` - This branch contains the latest stable release. The bot 'should' be stable on this branch, and is generally well tested. -- `feat/*` - These are feature branches, which are beeing worked on heavily. Please don't use these unless you want to test a specific feature. +- `feat/*` - These are feature branches, which are being worked on heavily. Please don't use these unless you want to test a specific feature. ## A note on Binance From 0a4b2f19e375a3f2306ccdffd03b31bb402a458d Mon Sep 17 00:00:00 2001 From: gaojin Date: Mon, 17 Sep 2018 10:37:25 +0800 Subject: [PATCH 05/12] use --no-cache-dir for docker build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit use --no-cache can save about 90M ``` ➜ freqtrade git:(develop) ✗ docker images freq REPOSITORY TAG IMAGE ID CREATED SIZE freq latest b15db8341067 7 minutes ago 800MB ➜ freqtrade git:(develop) ✗ docker images freq_nocache REPOSITORY TAG IMAGE ID CREATED SIZE freq_nocache latest e5731f28ac54 20 seconds ago 709MB ``` --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5d1b44f8c..aa9071024 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,11 +15,11 @@ RUN mkdir /freqtrade WORKDIR /freqtrade # Install dependencies -COPY requirements.txt /freqtrade/ -RUN pip install numpy \ - && pip install -r requirements.txt +COPY requirements.txt /freqtrade/ +RUN pip install numpy --no-cache-dir \ + && pip install -r requirements.txt --no-cache-dir # Install and execute COPY . /freqtrade/ -RUN pip install -e . +RUN pip install -e . --no-cache-dir ENTRYPOINT ["freqtrade"] From 9b83a0922490ec369047ec371b6c7ca426d4e8f5 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 17 Sep 2018 14:28:06 +0200 Subject: [PATCH 06/12] Update ccxt from 1.17.300 to 1.17.305 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 19e19c13b..07c305322 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ccxt==1.17.300 +ccxt==1.17.305 SQLAlchemy==1.2.11 python-telegram-bot==11.1.0 arrow==0.12.1 From f04e4f21230c89c055deaa33e2ee676cab5bd7d3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 17 Sep 2018 20:49:41 +0200 Subject: [PATCH 07/12] Fix trailing whitespace --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa9071024..2506665ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN mkdir /freqtrade WORKDIR /freqtrade # Install dependencies -COPY requirements.txt /freqtrade/ +COPY requirements.txt /freqtrade/ RUN pip install numpy --no-cache-dir \ && pip install -r requirements.txt --no-cache-dir From a5d4de803710d9357e69d2646e871fcf92369680 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 18 Sep 2018 14:28:06 +0200 Subject: [PATCH 08/12] Update ccxt from 1.17.305 to 1.17.311 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 07c305322..2fa1ca5a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ccxt==1.17.305 +ccxt==1.17.311 SQLAlchemy==1.2.11 python-telegram-bot==11.1.0 arrow==0.12.1 From 2c5b6aca91b156c9200a2afda8aaf69356c2e2e9 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 19 Sep 2018 14:28:06 +0200 Subject: [PATCH 09/12] Update ccxt from 1.17.311 to 1.17.316 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2fa1ca5a5..149143d9c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ccxt==1.17.311 +ccxt==1.17.316 SQLAlchemy==1.2.11 python-telegram-bot==11.1.0 arrow==0.12.1 From 0aa8557c03f528a2a6e178f9129d106a968e6e16 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 20 Sep 2018 14:28:08 +0200 Subject: [PATCH 10/12] Update ccxt from 1.17.316 to 1.17.324 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 149143d9c..d9f8f39f1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ccxt==1.17.316 +ccxt==1.17.324 SQLAlchemy==1.2.11 python-telegram-bot==11.1.0 arrow==0.12.1 From 53c0f01bef9d4cbc54c6a086c52682f6269ca534 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 20 Sep 2018 14:28:10 +0200 Subject: [PATCH 11/12] Update sqlalchemy from 1.2.11 to 1.2.12 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d9f8f39f1..676f8b0cc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ ccxt==1.17.324 -SQLAlchemy==1.2.11 +SQLAlchemy==1.2.12 python-telegram-bot==11.1.0 arrow==0.12.1 cachetools==2.1.0 From 8e659af580b5bfebd57d56b061cc7ff1791c9a77 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Fri, 21 Sep 2018 14:28:07 +0200 Subject: [PATCH 12/12] Update ccxt from 1.17.324 to 1.17.327 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 676f8b0cc..6c88f3a19 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ccxt==1.17.324 +ccxt==1.17.327 SQLAlchemy==1.2.12 python-telegram-bot==11.1.0 arrow==0.12.1