From e9c3f0cbbd1ee007e0c7f575e71cd15a2b9b8877 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 11 Dec 2021 10:01:24 +0100 Subject: [PATCH 1/3] Add note about python3.10 not being supported closes #6041 --- docs/installation.md | 4 ++++ setup.sh | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 40d171347..f3955ec5a 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -56,6 +56,10 @@ OS Specific steps are listed first, the [Common](#common) section below is neces !!! Note Python3.7 or higher and the corresponding pip are assumed to be available. +!!! Warning "Python 3.10 support" + Due to issues with dependencies, freqtrade is currently unable to support python 3.10. + We're working on supporting python 3.10, are however dependant on support from dependencies. + === "Debian/Ubuntu" #### Install necessary dependencies diff --git a/setup.sh b/setup.sh index 16ccde0df..d14f8214d 100755 --- a/setup.sh +++ b/setup.sh @@ -36,7 +36,8 @@ function check_installed_python() { fi done - echo "No usable python found. Please make sure to have python3.7 or newer installed" + echo "No usable python found. Please make sure to have python3.7 or newer installed." + echo "python3.10 is currently not supported." exit 1 } @@ -205,7 +206,7 @@ function config() { } function install() { - + echo_block "Installing mandatory dependencies" if [ "$(uname -s)" == "Darwin" ]; then From 671b9903d7fba21f3a9c9db5f95912fc04a6b86b Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 11 Dec 2021 15:54:09 +0100 Subject: [PATCH 2/3] Add github-actions dependabot --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 44ff606b4..b6ad5436b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,9 +5,17 @@ updates: schedule: interval: daily open-pull-requests-limit: 10 + - package-ecosystem: pip directory: "/" schedule: interval: weekly open-pull-requests-limit: 10 target-branch: develop + +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + target-branch: main From 849ca1ec0617f00d1867691247ed69f3b700338d Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 11 Dec 2021 16:12:36 +0100 Subject: [PATCH 3/3] Dependabot - use correct branch --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b6ad5436b..4d1f28a0d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -18,4 +18,4 @@ updates: schedule: interval: "weekly" open-pull-requests-limit: 10 - target-branch: main + target-branch: develop