Skip to content

Commit cc71aec

Browse files
[patch] import annotations for retry (#14)
* [patch] import annotations for retry * Explicitly bound python in the conda env * [dependabot skip] Update env file --------- Co-authored-by: pyiron-runner <pyiron@mpie.de>
1 parent 7974443 commit cc71aec

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

.binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
channels:
22
- conda-forge
33
dependencies:
4-
- python
4+
- python >=3.9,<3.13

.ci_support/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
channels:
22
- conda-forge
33
dependencies:
4-
- python
4+
- python >=3.9,<3.13

docs/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ dependencies:
77
- sphinx-gallery
88
- sphinx-rtd-theme
99
- versioneer
10-
- python
10+
- python >=3.9,<3.13

pyiron_snippets/files.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from __future__ import annotations
2+
23
from pathlib import Path
34
import shutil
45

pyiron_snippets/retry.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
33
"""
44

5+
from __future__ import annotations
6+
57
from itertools import count
68
import time
79
from typing import Callable, Optional, Type, TypeVar, Tuple, Union

0 commit comments

Comments
 (0)