aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/requirements.txt
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-11-29 22:49:01 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-11-29 22:49:01 +0300
commit44f64ed4f0237238bab7e483634f52802829b01f (patch)
treee5249df268b1c313d96c658de4fea085141bfdfd /requirements.txt
parentadd GitHub workflow (diff)
downloadsorting-algorithms-44f64ed4f0237238bab7e483634f52802829b01f.tar.gz
sorting-algorithms-44f64ed4f0237238bab7e483634f52802829b01f.zip
copy the 3.4 workaround from vk-scripts
Diffstat (limited to 'requirements.txt')
-rw-r--r--requirements.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/requirements.txt b/requirements.txt
index 8fe1f23..9e942a5 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,4 @@
-numpy>1.11.0
-matplotlib==1.5.1; python_version == '3.4'
-matplotlib==2.1.2; python_version == '3.5'
-matplotlib==3.1.1; python_version > '3.5'
+# Some random known-to-work versions.
+matplotlib ~=1.5 ; python_version == '3.4'
+matplotlib ~=2.1 ; python_version == '3.5'
+matplotlib ~=3.1 ; python_version > '3.5'