Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 3 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ requires = ["setuptools >= 60", "setuptools-scm>=8.0", "wheel"]

[project]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
Expand All @@ -16,7 +14,7 @@ classifiers = [
]
authors = [{name = "Jimmy-Xuan Shen", email = "jmmshn@gmail.com"}]
dependencies = [
'pymatgen>=2023.9.21',
'pymatgen-core>=2026.4.7',
]

description = "Tools for re-griding periodic volumetric quantum chemistry data for machine-learning purposes."
Expand All @@ -25,7 +23,7 @@ keywords = ["machine-learning", "dft", "vasp", "volumetric", "pymatgen"]
license = {text = "modified BSD"}
name = "mp-pyrho"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.11"

[tool.setuptools_scm]

Expand Down
2 changes: 1 addition & 1 deletion src/pyrho/charge_density.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import numpy.typing as npt
from monty.dev import deprecated
from monty.json import MSONable
from pymatgen.analysis.structure_matcher import ElementComparator, StructureMatcher
from pymatgen.core.lattice import Lattice
from pymatgen.core.structure_matcher import ElementComparator, StructureMatcher
from pymatgen.io.vasp import Chgcar, Poscar, VolumetricData

from pyrho.pgrid import PGrid
Expand Down
Loading