Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
- blobxfer to 1.11.0
- Various dependency updates
- Update AppVeyor config
  • Loading branch information
alfpark committed Mar 20, 2023
1 parent 99059fd commit f851815
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 25 deletions.
21 changes: 11 additions & 10 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,28 @@ cache:

environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
TOX_ENV: "py36"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7"
PYTHON_ARCH: "64"
TOX_ENV: "py37"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8"
PYTHON_ARCH: "64"
TOX_ENV: "py38"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python39-x64"
PYTHON_VERSION: "3.9"
PYTHON_ARCH: "64"
TOX_ENV: "py39"

init:
- echo %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%

install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python -m pip install -U pip
- where pip
- pip install --upgrade setuptools wheel
- pip install -r requirements.txt
Expand All @@ -37,7 +38,7 @@ install:
build: off

test_script:
- flake8 --exit-zero --select F,E,W --ignore W504 --statistics shipyard.py convoy\\*.py
- IF "%PYTHON_VERSION%" GEQ "3.8" (
flake8 --exit-zero --select F,E,W --ignore W504 --statistics cascade\\*.py cargo\\*.py federation\\*.py heimdall\\*.py slurm\\*.py
- flake8 --exit-zero --select F,E,W --ignore W504 --statistics shipyard.py convoy
- IF "%PYTHON_VERSION%" GEQ "3.9" (
flake8 --exit-zero --select F,E,W --ignore W504 --statistics cascade cargo federation heimdall slurm
)
4 changes: 2 additions & 2 deletions cargo/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
azure-batch==9.0.0
msrest==0.6.21
requests>=2.25.1,<3
ruamel.yaml>=0.17.4,<1
requests>=2.26.0,<3
ruamel.yaml>=0.17.16,<1
2 changes: 1 addition & 1 deletion convoy/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
logger = logging.getLogger(__name__)
util.setup_logger(logger)
# global defines
_BLOBXFER_VERSION = '1.10.0'
_BLOBXFER_VERSION = '1.11.0'
_MEGABYTE = 1048576
_MAX_READ_BLOCKSIZE_BYTES = 4194304
_FILE_SPLIT_PREFIX = '_shipyard-'
Expand Down
4 changes: 2 additions & 2 deletions federation/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ azure-mgmt-storage==10.0.0
azure-storage-blob>=2.1.0,<3
azure-storage-queue>=2.1.0,<3
msrestazure==0.6.4
python-dateutil>=2.8.1,<3
requests>=2.25.1,<3
python-dateutil>=2.8.2,<3
requests>=2.26.0,<3
2 changes: 1 addition & 1 deletion heimdall/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ azure-mgmt-network==10.2.0
azure-mgmt-resource==10.0.0
azure-mgmt-storage==10.0.0
msrestazure==0.6.4
requests>=2.25.1,<3
requests>=2.26.0,<3
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ azure-mgmt-storage==10.0.0
azure-storage-blob>=2.1.0,<3
azure-storage-file>=2.1.0,<3
azure-storage-queue>=2.1.0,<3
blobxfer==1.10.0
click>=7.0,<8
keyrings.alt>=4.0.2,<5
blobxfer==1.11.0
click>=8.0.1,<9
keyrings.alt>=4.1.0,<5
msrest==0.6.21
msrestazure==0.6.4
pathlib2==2.3.5; python_version < '3.5'
pykwalify==1.8.0
python-dateutil>=2.8.1,<3
requests>=2.25.1,<3
ruamel.yaml>=0.17.4,<1
pykwalify>=1.8.0,<2
python-dateutil>=2.8.2,<3
requests>=2.26.0,<3
ruamel.yaml>=0.17.16,<1
scandir==1.10.0; python_version < '3.5'
4 changes: 2 additions & 2 deletions slurm/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ azure-mgmt-resource==10.0.0
azure-mgmt-storage==10.0.0
azure-storage-queue>=2.1.0,<3
msrestazure==0.6.4
python-dateutil>=2.8.1,<3
requests>=2.25.1,<3
python-dateutil>=2.8.2,<3
requests>=2.26.0,<3

0 comments on commit f851815

Please sign in to comment.