1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Merge pull request #886 from octodns/update-requirements-txt

Update requirements*.txt to the latest
This commit is contained in:
Ross McFarland
2022-03-10 13:27:11 -08:00
committed by GitHub
4 changed files with 13 additions and 13 deletions

View File

@@ -4,13 +4,13 @@ bleach==4.1.0
build==0.7.0 build==0.7.0
certifi==2021.10.8 certifi==2021.10.8
cffi==1.15.0 cffi==1.15.0
charset-normalizer==2.0.11 charset-normalizer==2.0.12
cmarkgfm==0.6.0 cmarkgfm==0.8.0
colorama==0.4.4 colorama==0.4.4
coverage==6.3 coverage==6.3.2
docutils==0.18.1 docutils==0.18.1
idna==3.3 idna==3.3
importlib-metadata==4.10.1 importlib-metadata==4.11.2
iniconfig==1.1.1 iniconfig==1.1.1
keyring==23.5.0 keyring==23.5.0
packaging==21.3 packaging==21.3
@@ -21,23 +21,22 @@ pprintpp==0.4.0
py==1.11.0 py==1.11.0
pycodestyle==2.8.0 pycodestyle==2.8.0
pycountry-convert==0.7.2 pycountry-convert==0.7.2
pycountry==22.1.10 pycountry==22.3.5
pycparser==2.21 pycparser==2.21
pyflakes==2.4.0 pyflakes==2.4.0
pyparsing==3.0.7 pyparsing==3.0.7
pytest-cov==3.0.0 pytest-cov==3.0.0
pytest-mock==3.7.0 pytest-mock==3.7.0
pytest-network==0.0.1 pytest-network==0.0.1
pytest==6.2.5 pytest==7.0.1
readme-renderer==32.0 readme-renderer==33.0
repoze.lru==0.7 repoze.lru==0.7
requests-toolbelt==0.9.1 requests-toolbelt==0.9.1
requests==2.27.1 requests==2.27.1
rfc3986==2.0.0 rfc3986==2.0.0
toml==0.10.2 tomli==2.0.1
tomli==2.0.0 tqdm==4.63.0
tqdm==4.62.3 twine==3.8.0
twine==3.7.1
urllib3==1.26.8 urllib3==1.26.8
webencodings==0.5.1 webencodings==0.5.1
zipp==3.7.0 zipp==3.7.0

View File

@@ -1,5 +1,5 @@
PyYAML==6.0 PyYAML==6.0
dnspython==2.2.0 dnspython==2.2.1
fqdn==1.5.1 fqdn==1.5.1
natsort==8.1.0 natsort==8.1.0
python-dateutil==2.8.2 python-dateutil==2.8.2

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
from os.path import join from os.path import join
from subprocess import check_call, check_output from subprocess import check_call, check_output

View File

@@ -57,6 +57,7 @@ def long_description():
tests_require = ( tests_require = (
'pytest>=6.2.5', 'pytest>=6.2.5',
'pytest-cov>=3.0.0',
'pytest-network>=0.0.1', 'pytest-network>=0.0.1',
) )