Skip to content

Commit f680ec5

Browse files
committed
Address comments
1 parent f1a7e8b commit f680ec5

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build_workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ jobs:
1919
- name: Checkout Code Repository
2020
uses: actions/checkout@v3
2121

22-
- name: Set up Python 3.9
22+
- name: Set up Python 3.13
2323
uses: actions/setup-python@v4
2424
with:
25-
python-version: 3.9
25+
python-version: 3.13
2626

2727
# Run all pre-commit hooks on all the files.
2828
# Getting only staged files can be tricky in case a new PR is opened
2929
# since the action is run on a branch in detached head state.
3030
# This is the equivalent of running "pre-commit run --all-files" locally.
3131
# If you commit with the `--no-verify` flag, this check may fail.
3232
- name: Install and Run Pre-commit
33-
uses: pre-commit/[email protected].0
33+
uses: pre-commit/[email protected].1
3434

3535
build:
3636
runs-on: ubuntu-latest

conda/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies:
66
# Base
77
# =================
88
- pip=22.2.2
9-
- python=3.11
9+
- python >=3.11,<3.14
1010
- sqlite
1111
- six=1.16.0
1212
- globus-sdk=3.2.1

conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ build:
1616

1717
requirements:
1818
host:
19-
- python >=3.11
19+
- python >=3.11,<3.14
2020
- pip
2121

2222
run:
23-
- python >=3.11
23+
- python >=3.11,<3.14
2424
- fair-research-login >=0.2.6,<0.3.0
2525
- globus-sdk >=3.0.0,<4.0.0
2626
- six

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ exclude =
4646
venv
4747

4848
[mypy]
49-
python_version = 3.9
49+
python_version = 3.13
5050
check_untyped_defs = True
5151
ignore_missing_imports = True
5252
warn_unused_ignores = True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
88
description="Long term HPSS archiving software for E3SM",
99
packages=find_packages(include=["zstash", "zstash.*"]),
10-
python_requires=">=3.9",
10+
python_requires=">=3.11,<3.14",
1111
entry_points={"console_scripts": ["zstash=zstash.main:main"]},
1212
)

zstash/globus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def globus_block_wait(
321321
try:
322322
# Wait for the task to complete
323323
logger.info(
324-
f"{ts_utc()}: on task_wait try {retry_count+1} out of {max_retries}"
324+
f"{ts_utc()}: on task_wait try {retry_count + 1} out of {max_retries}"
325325
)
326326
transfer_client.task_wait(
327327
task_id, timeout=wait_timeout, polling_interval=10

0 commit comments

Comments
 (0)