summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJoris Roovers <joris.roovers@gmail.com>2019-06-18 13:03:45 +0200
committerJoris Roovers <joris.roovers@gmail.com>2019-06-18 14:34:06 +0200
commit3fc4c03276b0e15368da03eccb2b5d95e91c79a7 (patch)
tree010dbabe3c8b208f44977707d3da5ec23cd9e7d3 /setup.py
parent157c0783170e290415e9eef4960b868bd42486a4 (diff)
Updated dependencies
- Updated most dependencies to latest (or newer) versions - Removed dependency pinning for Python 2.6 and 3.3 - Minor code-tweaks to deal with dependency changes - Added pypi download stats to `run_tests.sh -s`
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index f6b7f00..02c91ab 100644
--- a/setup.py
+++ b/setup.py
@@ -64,13 +64,14 @@ setup(
"License :: OSI Approved :: MIT License"
],
install_requires=[
- 'Click==6.7',
- 'arrow==0.10.0'
+ 'Click==7.0',
],
extras_require={
- ':python_version < "2.7"': [
- 'importlib==1.0.3',
- 'ordereddict==1.1',
+ ':python_version != "3.4"': [
+ 'arrow==0.14.2',
+ ],
+ ':python_version == "3.4"': [
+ 'arrow==0.13.2',
],
':sys_platform != "win32"': [
'sh==1.12.14',