summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoris Roovers <joris.roovers@gmail.com>2021-03-11 10:17:51 +0100
committerGitHub <noreply@github.com>2021-03-11 10:17:51 +0100
commit5ee8892035b73c93438c4aaac8f92c5313e83e43 (patch)
treefbdd613a04f791f78f3fc753126c1f477355296a
parentbb9b9213d0781f0bab819b819b8fbe4d38176845 (diff)
Various dependency upgrades (#184)
wheel: 0.35.1 -> 0.36.2 arrow: 0.17.0 -> 1.0.2 Test dependencies: pytest: 6.1.2 -> 6.2.2 coverage: 5.3 -> 5.5 radon: 4.3.2 -> 4.4.0 pylint: 2.6.0 -> 2.7.2 python-coveralls: 2.9.2 -> 2.9.3
-rw-r--r--qa/requirements.txt4
-rw-r--r--requirements.txt4
-rw-r--r--setup.py2
-rw-r--r--test-requirements.txt10
4 files changed, 10 insertions, 10 deletions
diff --git a/qa/requirements.txt b/qa/requirements.txt
index 32f4662..60727ed 100644
--- a/qa/requirements.txt
+++ b/qa/requirements.txt
@@ -1,4 +1,4 @@
sh==1.14.1
-pytest==6.1.2;
-arrow==0.17.0;
+pytest==6.2.2;
+arrow==1.0.2;
gitlint # no version as you want to test the currently installed version
diff --git a/requirements.txt b/requirements.txt
index 0a164bf..a2cc6d0 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,5 +1,5 @@
setuptools
-wheel==0.35.1
+wheel==0.36.2
Click==7.1.2
sh==1.14.1; sys_platform != 'win32' # sh is not supported on windows
-arrow==0.17.0
+arrow==1.0.2
diff --git a/setup.py b/setup.py
index 3220f82..3c1b9ff 100644
--- a/setup.py
+++ b/setup.py
@@ -60,7 +60,7 @@ setup(
python_requires=">=3.6",
install_requires=[
'Click==7.1.2',
- 'arrow==0.17.0',
+ 'arrow==1.0.2',
],
extras_require={
':sys_platform != "win32"': [
diff --git a/test-requirements.txt b/test-requirements.txt
index 10ca287..42e079e 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,8 +1,8 @@
flake8==3.8.4
-coverage==5.3
-python-coveralls==2.9.2
-radon==4.3.2
+coverage==5.5
+python-coveralls==2.9.3
+radon==4.4.0
flake8-polyfill==1.0.2 # Required when installing both flake8 and radon>=4.3.1
-pytest==6.1.2;
-pylint==2.6.0;
+pytest==6.2.2;
+pylint==2.7.2;
-e .