Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/OctoPrint/OctoPrint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGina Häußge <gina@octoprint.org>2022-01-31 18:32:46 +0300
committerGina Häußge <gina@octoprint.org>2022-01-31 18:32:46 +0300
commit82438557d02359b61935a1303b14cf0b46d02c71 (patch)
treefdaaf5a6fe8d94890a1471377c744bad6a402027 /.github
parent85cc9971d98fc5a61e36169133ee96b997d72a95 (diff)
💥 Require Python 3.7+
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index dabbb701a..4a219563a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -50,7 +50,7 @@ jobs:
name: 🧪 Unit tests
strategy:
matrix:
- python: ["2.7", "3.7", "3.8", "3.9", "3.10"]
+ python: ["3.7", "3.8", "3.9", "3.10"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@@ -70,7 +70,7 @@ jobs:
needs: build
strategy:
matrix:
- python: ["2.7", "3.7", "3.8", "3.9", "3.10"]
+ python: ["3.7", "3.8", "3.9", "3.10"]
installable: ["wheel", "sdist"]
runs-on: ubuntu-latest
steps: