aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/constraints.txt
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-04 10:22:10 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-04 10:22:10 +0300
commit3e424b5cd0a940fcad5647b2cec9515491d5f06f (patch)
tree13ced144b52ad652c7ddc7f0068fa7bd34bd9ca1 /constraints.txt
parentworkflows/test: linting (diff)
downloadsorting-algorithms-3e424b5cd0a940fcad5647b2cec9515491d5f06f.tar.gz
sorting-algorithms-3e424b5cd0a940fcad5647b2cec9515491d5f06f.zip
merge constraints.txt back to requirements.txt
I'm pretty sure it didn't work before w/ Python 3.4, but here we go.
Diffstat (limited to 'constraints.txt')
-rw-r--r--constraints.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/constraints.txt b/constraints.txt
deleted file mode 100644
index 04e6c11..0000000
--- a/constraints.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-# matplotlib 1.5 is one of the versions that works with Python 3.4, and it
-# doesn't specify the upper bound for its numpy dependency. So pip will try to
-# install the latest version, which doesn't work with 3.4. Putting the numpy
-# and the matplotlib requirements to the same requirements.txt file doesn't
-# work unfortunately, the latest version will still get picked up.
-
-# The lower bound is random, 1.16 is the latest version to support 3.4.
-numpy >=1.11,<1.17 ; python_version == '3.4'
-numpy >=1.17 ; python_version > '3.4'