jenkins-bot merged this change.

View Change

Approvals: Dvorapa: Looks good to me, approved jenkins-bot: Verified
[deps] Do not restrict ipaddress version dependency

Pywikibot tests pass with lowest ipaddress version.
It is not necessary to have the dependency more strictly.

Bug: T248376
Change-Id: Iad2b54d39480e16bd4a200f6b3226af3f7d33d38
---
M requirements.txt
M setup.py
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/requirements.txt b/requirements.txt
index b688d45..133021f 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -22,7 +22,7 @@
requests>=2.20.1,<2.22.0; python_version == '3.4'
requests>=2.20.1; python_version != '3.4'
enum34>=1.1.6,!=1.1.8; python_version < '3'
-ipaddress>=1.0.23 ; python_version < '3'
+ipaddress ; python_version < '3'
# requests security extra
requests[security] ; python_full_version > '2.7.6' and python_full_version < '2.7.9'

diff --git a/setup.py b/setup.py
index cccd508..21407cf 100644
--- a/setup.py
+++ b/setup.py
@@ -102,7 +102,7 @@
dependencies = ['requests>=2.20.1,<2.22.0; python_version == "3.4"',
'requests>=2.20.1; python_version != "3.4"',
'enum34>=1.1.6,!=1.1.8; python_version < "3"',
- 'ipaddress>=1.0.23; python_version < "3"',
+ 'ipaddress; python_version < "3"',
'pathlib2;python_version<"3"']

# Python versions before 2.7.9 will cause urllib3 to trigger

To view, visit change 587979. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: Iad2b54d39480e16bd4a200f6b3226af3f7d33d38
Gerrit-Change-Number: 587979
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Dvorapa <dvorapa@seznam.cz>
Gerrit-Reviewer: jenkins-bot (75)