зеркало из https://github.com/Azure/blobxfer.git
Update dependencies to latest
This commit is contained in:
Родитель
ec8086ee5a
Коммит
8555419de9
|
@ -1,6 +1,7 @@
|
|||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
.pytest_cache/
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
- Update dependencies to latest
|
||||
|
||||
### Fixed
|
||||
- Non-MD5 upload invalid ref (#60)
|
||||
- Retry of broken encrypted upload (#61)
|
||||
- Detect non-Base64 encoded storage account keys (#62)
|
||||
|
||||
## [1.1.1] - 2018-01-30
|
||||
### Changed
|
||||
- Updated Azure Storage dependencies to 1.0.0 (GA version)
|
||||
|
|
12
setup.py
12
setup.py
|
@ -34,17 +34,17 @@ packages = [
|
|||
]
|
||||
|
||||
install_requires = [
|
||||
'azure-storage-blob==1.0.0',
|
||||
'azure-storage-file==1.0.0',
|
||||
'azure-storage-blob==1.1.0',
|
||||
'azure-storage-file==1.1.0',
|
||||
'bitstring==3.1.5',
|
||||
'click==6.7',
|
||||
'cryptography>=2.1.4',
|
||||
'cryptography>=2.2.2',
|
||||
'future==0.16.0',
|
||||
'pathlib2==2.3.0;python_version<"3.5"',
|
||||
'python-dateutil==2.6.1',
|
||||
'python-dateutil==2.7.2',
|
||||
'requests==2.18.4',
|
||||
'ruamel.yaml==0.15.35',
|
||||
'scandir==1.6;python_version<"3.5"',
|
||||
'ruamel.yaml==0.15.37',
|
||||
'scandir==1.7;python_version<"3.5"',
|
||||
]
|
||||
|
||||
setup(
|
||||
|
|
1
tox.ini
1
tox.ini
|
@ -5,6 +5,7 @@ envlist = py27, py34, py35, py36
|
|||
deps = -rtest_requirements.txt
|
||||
passenv = CI TRAVIS TRAVIS_*
|
||||
commands =
|
||||
pip list --format=columns --outdated
|
||||
flake8 {envsitepackagesdir}/blobxfer_cli/
|
||||
flake8 {envsitepackagesdir}/blobxfer/
|
||||
py.test \
|
||||
|
|
Загрузка…
Ссылка в новой задаче