Skip to content

Commit 2a42f02

Browse files
committed
⬆️ Require newer environment for future upgrades
This is the last version that supports stock OctoPi 0.14, catering towards the ancient setuptools and pip versions found on it becomes more and more unjustifiable overhead.
1 parent 7c48cfd commit 2a42f02

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/octoprint/plugins/softwareupdate/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@
3232
import octoprint.settings
3333

3434

35+
# OctoPi 0.15+
3536
MINIMUM_PYTHON = "2.7.9"
36-
MINIMUM_SETUPTOOLS = "5.5.1"
37-
MINIMUM_PIP = "9.0.1"
37+
MINIMUM_SETUPTOOLS = "39.0.1"
38+
MINIMUM_PIP = "10.0.1"
3839

3940

4041
##~~ Plugin

0 commit comments

Comments
 (0)