This commit is contained in:
Fred Park 2018-04-05 13:47:22 -07:00
Родитель ec8086ee5a
Коммит 8555419de9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3C4D545F457737EB
4 изменённых файлов: 16 добавлений и 6 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -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)

Просмотреть файл

@ -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(

Просмотреть файл

@ -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 \