summaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorSeth Morton <seth.m.morton@gmail.com>2020-11-26 20:58:30 -0800
committerSeth Morton <seth.m.morton@gmail.com>2020-11-26 20:58:30 -0800
commiteb63252f995689929c48fe79a816e53066a3d7ba (patch)
tree02564e1b02c183e653578290d5e3db677e0025d9 /dev
parent02d6e7b1f4a5461930cfc820238fda5ffdfafabd (diff)
downloadnatsort-eb63252f995689929c48fe79a816e53066a3d7ba.tar.gz
Do not pin testing dependencies
Apparently Linux distro packagers do not respect the pinned testing dependencies that I have carefully chosen so they experience errors that result from external changes over which I have no control, and then expect me to fix the tests even though I deliberately tried to avoid problems like this by pinning the testing dependencies. Oh well. By removing the pins, perhaps I can find these problems early and correct them myself.
Diffstat (limited to 'dev')
-rw-r--r--dev/README.md2
-rw-r--r--dev/requirements.in7
-rw-r--r--dev/requirements.txt23
3 files changed, 0 insertions, 32 deletions
diff --git a/dev/README.md b/dev/README.md
index de30ed9..2e9b0bf 100644
--- a/dev/README.md
+++ b/dev/README.md
@@ -9,5 +9,3 @@ This file contains some files useful for development.
- `clean.py` - This file cleans most files that are created during development.
Run in the project home directory.
It is not really intended to be called directly, but instead through `tox -e clean`.
-- `requirements.in` - Our direct requirements to run tests.
-- `requirements.txt` - All pinned requirements to run tests.
diff --git a/dev/requirements.in b/dev/requirements.in
deleted file mode 100644
index c30d7ab..0000000
--- a/dev/requirements.in
+++ /dev/null
@@ -1,7 +0,0 @@
-coverage
-pytest
-pytest-cov
-pytest-mock
-hypothesis
-# pytest-faulthandler; platform_python_implementation == 'CPython'
-semver
diff --git a/dev/requirements.txt b/dev/requirements.txt
deleted file mode 100644
index 447f7f1..0000000
--- a/dev/requirements.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# This file is autogenerated by pip-compile
-# To update, run:
-#
-# pip-compile requirements.in
-#
-attrs==19.3.0 # via hypothesis, pytest
-coverage==5.0.2
-hypothesis==5.1.1
-importlib-metadata==1.3.0 # via pluggy, pytest
-more-itertools==8.0.2 # via pytest, zipp
-packaging==20.0 # via pytest
-pluggy==0.13.1 # via pytest
-py==1.8.1 # via pytest
-pyparsing==2.4.6 # via packaging
-pytest-cov==2.8.1
-pytest-mock==2.0.0
-pytest==5.3.2
-semver==2.9.0
-six==1.13.0 # via packaging
-sortedcontainers==2.1.0 # via hypothesis
-wcwidth==0.1.8 # via pytest
-zipp==0.6.0 # via importlib-metadata