Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[patch] use deprecate from pyiron_snippets #1067

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ dependencies:
- numpy =1.26.4
- pyiron_base =0.8.0
- pyiron_atomistics =0.5.4
- pyiron_snippets =0.1.0
- pyparsing =3.1.2
- scipy =1.12.0
- seaborn =0.13.2
Expand Down
1 change: 1 addition & 0 deletions .ci_support/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ dependencies:
- numpy =1.26.4
- pyiron_base =0.8.0
- pyiron_atomistics =0.5.4
- pyiron_snippets =0.1.0
- pyparsing =3.1.2
- scipy =1.12.0
- seaborn =0.13.2
Expand Down
1 change: 1 addition & 0 deletions docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dependencies:
- numpy =1.26.4
- pyiron_base =0.8.0
- pyiron_atomistics =0.5.4
- pyiron_snippets =0.1.0
- pyparsing =3.1.2
- scipy =1.12.0
- seaborn =0.13.2
Expand Down
3 changes: 2 additions & 1 deletion pyiron_contrib/atomistics/randspg/randspg.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
from pyiron_atomistics.atomistics.structure.structurestorage import StructureStorage
from pyiron_atomistics.atomistics.structure.atoms import Atoms
from pyiron_atomistics.atomistics.structure.has_structure import HasStructure
from pyiron_base import GenericParameters, GenericJob, deprecate
from pyiron_base import GenericParameters, GenericJob
from pyiron_snippets.deprecate import deprecate
from pyiron_atomistics.vasp.structure import read_atoms

__author__ = "Jan Janssen"
Expand Down
2 changes: 1 addition & 1 deletion pyiron_contrib/generic/storage_interface_toolkit.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import warnings

from pyiron_base import Toolkit
from pyiron_base import ImportAlarm
from pyiron_snippets.import_alarm import ImportAlarm

try:
from pyiron_contrib.generic.coscineIo import CoscineProject, CoscineResource
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
'matplotlib==3.8.3',
'numpy==1.26.4',
'pyiron_base==0.8',
'pyiron_snippets==0.1.0',
'scipy==1.12.0',
'seaborn==0.13.2',
'pyparsing==3.1.2',
Expand Down
Loading