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

Bump maggma from 0.57.6 to 0.57.8 #159

Merged
merged 4 commits into from
Nov 14, 2023
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 13, 2023

Bumps maggma from 0.57.6 to 0.57.8.

Release notes

Sourced from maggma's releases.

v0.57.8

Version 0.57.8

Commits

  • [3ab45f41] Merge pull request #884 from materialsproject/bugfix/agg_kwargs
  • [5dd4e886] Fix aggregation pipeline kwargs
  • [a28d9648] Updated CHANGELOG.md

v0.57.7

Version 0.57.7

Commits

  • [73f10f5f] Merge pull request #883 from materialsproject/bugfix/hint_scheme_changes
  • [5d50d934] Update hint_scheme
  • [86a161ec] Merge pull request #880 from materialsproject/auto-dependency-upgrades
  • [349a3c43] Merge branch 'main' into auto-dependency-upgrades
  • [c9632bac] Updated CHANGELOG.md
Changelog

Sourced from maggma's changelog.

v0.57.8 (2023-11-09)

Full Changelog

Merged pull requests:

v0.57.7 (2023-11-07)

Full Changelog

Merged pull requests:

Commits
  • 3ab45f4 Merge pull request #884 from materialsproject/bugfix/agg_kwargs
  • 5dd4e88 Fix aggregation pipeline kwargs
  • a28d964 Updated CHANGELOG.md
  • 73f10f5 Merge pull request #883 from materialsproject/bugfix/hint_scheme_changes
  • 5d50d93 Update hint_scheme
  • 86a161e Merge pull request #880 from materialsproject/auto-dependency-upgrades
  • 349a3c4 Merge branch 'main' into auto-dependency-upgrades
  • c9632ba Updated CHANGELOG.md
  • 770dc20 update dependencies for . (ubuntu-latest/py3.9)
  • bc95ddb update dependencies for . (ubuntu-latest/py3.8)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [maggma](https://github.com/materialsproject/maggma) from 0.57.6 to 0.57.8.
- [Release notes](https://github.com/materialsproject/maggma/releases)
- [Changelog](https://github.com/materialsproject/maggma/blob/main/docs/CHANGELOG.md)
- [Commits](materialsproject/maggma@v0.57.6...v0.57.8)

---
updated-dependencies:
- dependency-name: maggma
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 13, 2023
@jan-janssen
Copy link
Member

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
Cell In[1], line 4
      2 get_ipython().run_line_magic('matplotlib', 'inline')
      3 import matplotlib.pylab as plt
----> 4 from pyiron import Project
      5 import ase.units as units
      6 import pandas

File /opt/conda/lib/python3.11/site-packages/pyiron/__init__.py:4
      1 __version__ = "0.1"
      2 __all__ = []
----> 4 from pyiron_atomistics.project import Project
      5 from pyiron_atomistics.atomistics.structure.atoms import ase_to_pyiron, pyiron_to_ase, Atoms
      6 from pyiron_base import Notebook, install_dialog, JOB_CLASS_DICT

File /opt/conda/lib/python3.11/site-packages/pyiron_atomistics/__init__.py:4
      1 __version__ = "0.1"
      2 __all__ = []
----> 4 from pyiron_atomistics.project import Project
      5 from pyiron_atomistics.toolkit import AtomisticsTools
      6 from pyiron_atomistics.atomistics.structure.atoms import (
      7     ase_to_pyiron,
      8     pyiron_to_ase,
      9     Atoms,
     10 )

File /opt/conda/lib/python3.11/site-packages/pyiron_atomistics/project.py:34
     32 import pyiron_atomistics.atomistics.structure.pyironase as ase
     33 from pyiron_atomistics.atomistics.structure.atoms import Atoms
---> 34 from pyiron_atomistics.atomistics.structure.factory import StructureFactory
     35 from pyiron_atomistics.atomistics.master.parallel import pipe
     38 __author__ = "Joerg Neugebauer, Jan Janssen"

File /opt/conda/lib/python3.11/site-packages/pyiron_atomistics/atomistics/structure/factory.py:40
     38 from pyiron_atomistics.atomistics.structure.factories.aimsgb import AimsgbFactory
     39 from pyiron_atomistics.atomistics.structure.factories.compound import CompoundFactory
---> 40 from pyiron_atomistics.atomistics.structure.factories.materialsproject import (
     41     MaterialsProjectFactory,
     42 )
     43 from pyiron_atomistics.atomistics.structure.pyironase import (
     44     publication as publication_ase,
     45 )
     46 from pyiron_atomistics.atomistics.structure.atoms import (
     47     CrystalStructure,
     48     Atoms,
   (...)
     51     ovito_to_pyiron,
     52 )

File /opt/conda/lib/python3.11/site-packages/pyiron_atomistics/atomistics/structure/factories/materialsproject.py:2
      1 from typing import Union, List
----> 2 from mp_api.client import MPRester
      3 from pyiron_atomistics.atomistics.structure.has_structure import HasStructure
      4 from pyiron_atomistics.atomistics.structure.structurestorage import StructureStorage

File /opt/conda/lib/python3.11/site-packages/mp_api/client/__init__.py:8
      5 from importlib.metadata import PackageNotFoundError, version
      7 from .core import MPRestError
----> 8 from .mprester import MPRester
     10 try:
     11     __version__ = version("mp_api")

File /opt/conda/lib/python3.11/site-packages/mp_api/client/mprester.py:13
     11 from emmet.core.mpid import MPID
     12 from emmet.core.settings import EmmetSettings
---> 13 from emmet.core.tasks import TaskDoc
     14 from emmet.core.vasp.calc_types import CalcType
     15 from packaging import version

File /opt/conda/lib/python3.11/site-packages/emmet/core/tasks.py:10
      7 from pathlib import Path
      8 from typing import Any, Dict, List, Optional, Tuple, Type, TypeVar, Union
---> 10 from custodian.vasp.jobs import VaspJob
     11 import numpy as np
     12 from monty.json import MontyDecoder

ModuleNotFoundError: No module named 'custodian'

@jan-janssen
Copy link
Member

The issue is already mentioned in https://github.com/orgs/pyiron/discussions/202#discussioncomment-7538295

@jan-janssen jan-janssen merged commit 5684a25 into main Nov 14, 2023
2 checks passed
@delete-merged-branch delete-merged-branch bot deleted the dependabot/pip/maggma-0.57.8 branch November 14, 2023 07:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants