Browse Source

According to docs ipaddress was 3.3, requires for ipaddress too

Also corrects futures to 3.2 in requires
pull/569/head
Ross McFarland 5 years ago
parent
commit
5c248b476d
No known key found for this signature in database GPG Key ID: 61C10C4FC8FE4A89
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      requirements.txt
  2. +1
    -1
      setup.py

+ 2
- 2
requirements.txt View File

@ -7,10 +7,10 @@ dnspython==1.16.0
docutils==0.16
dyn==1.8.1
edgegrid-python==1.1.1
futures==3.2.0; python_version < '3.0'
futures==3.2.0; python_version < '3.2'
google-cloud-core==1.3.0
google-cloud-dns==0.32.0
ipaddress==1.0.23
ipaddress==1.0.23; python_version < '3.3'
jmespath==0.10.0
msrestazure==0.6.4
natsort==6.2.1


+ 1
- 1
setup.py View File

@ -69,7 +69,7 @@ setup(
'PyYaml>=4.2b1',
'dnspython>=1.15.0',
'futures>=3.2.0; python_version<"3.2"',
'ipaddress>=1.0.22; python_version<"3.2"',
'ipaddress>=1.0.22; python_version<"3.3"',
'natsort>=5.5.0',
'pycountry>=19.8.18',
'pycountry-convert>=0.7.2',


Loading…
Cancel
Save