summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2021-06-18 13:11:56 +0200
committerDominik Holland <dominik.holland@googlemail.com>2022-01-27 13:50:04 +0100
commit3c1c8b6436f6b621e70ca0b9ab1374c3de392abf (patch)
tree2202d0730b3f1838fa9b6878a2e5ac964710a9ef
parent3129feaac52979ddb1daf642a9d6f4656c5ba661 (diff)
downloadqtivi-qface-3c1c8b6436f6b621e70ca0b9ab1374c3de392abf.tar.gz
Relax the required versions of all our dependencies
This should make it easier to install the package using pip, especially when some other packages require a more uptodate version of one of our dependent packages.
-rw-r--r--requirements.txt30
-rw-r--r--setup.py18
2 files changed, 24 insertions, 24 deletions
diff --git a/requirements.txt b/requirements.txt
index d8adc5f..2ca9ab4 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,15 +1,15 @@
-antlr4-python3-runtime==4.7.1
-argh==0.26.2
-click==6.7
-coloredlogs==10.0
-humanfriendly==4.15.1
-Jinja2==2.11.3
-MarkupSafe==1.0
-path.py==11.0.1
-pathtools==0.1.2
-PyYAML==5.4
-six==1.11.0
-typing==3.6.4
-watchdog==0.8.3
-pytest==5.3.5
-pytest-cov==2.8.1
+antlr4-python3-runtime>=4.7.1
+argh>=0.26.2
+click>==6.7
+coloredlogs>=10.0
+humanfriendly>=4.15.1
+Jinja2>=2.11.3
+MarkupSafe>=1.0
+path.py>=11.0.1
+pathtools>=0.1.2
+PyYAML>=5.4
+six>=1.11.0
+typing>=3.6.4
+watchdog>=0.8.3
+pytest>=5.3.5
+pytest-cov>=2.8.1
diff --git a/setup.py b/setup.py
index d938e09..3a87f8d 100644
--- a/setup.py
+++ b/setup.py
@@ -44,15 +44,15 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=[
- 'click==6.7',
- 'antlr4-python3-runtime==4.7.1',
- 'jinja2==2.11.3',
- 'path.py==11.0.1',
- 'pyyaml==5.4',
- 'typing==3.6.4',
- 'watchdog==0.8.3',
- 'six==1.11.0',
- 'coloredlogs==10.0',
+ 'click>=6.7',
+ 'antlr4-python3-runtime>=4.7.1',
+ 'jinja2>=2.11.3',
+ 'path.py>=11.0.1',
+ 'pyyaml>=5.4',
+ 'typing>=3.6.4',
+ 'watchdog>=0.8.3',
+ 'six>=1.11.0',
+ 'coloredlogs>=10.0',
],
extras_require={
'dev': [