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
9 changes: 5 additions & 4 deletions .binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ channels:
dependencies:
- coveralls
- coverage
- numpy =2.2.1
- setuptools
- numpy =2.3.1
- black =24.8.0
- h5py =3.12.1
- ase =3.23.0
- h5py =3.14.0
- ase =3.25.0
- sphinxdft-data =0.0.1
- semantikon =0.0.12
- semantikon =0.0.20
- pint =0.24.4
9 changes: 5 additions & 4 deletions .ci_support/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ channels:
dependencies:
- coveralls
- coverage
- numpy =2.2.1
- setuptools
- numpy =2.3.1
- black =24.8.0
- h5py =3.12.1
- ase =3.23.0
- h5py =3.14.0
- ase =3.25.0
- sphinxdft-data =0.0.1
- semantikon =0.0.12
- semantikon =0.0.20
- pint =0.24.4
5 changes: 4 additions & 1 deletion .github/workflows/push-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@ jobs:
uses: pyiron/actions/.github/workflows/push-pull.yml@actions-4.0.2
with:
runner: 'ubuntu-22.04' # with ubuntu > 22.04, pip is broken
python-version-alt3: 'exclude' # No python 3.9
python-version-alt1: 'exclude'
python-version-alt2: '3.11'
python-version: '3.12'
python-version-alt3: '3.13'
secrets: inherit
9 changes: 5 additions & 4 deletions docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ dependencies:
- versioneer
- coveralls
- coverage
- numpy =2.2.1
- setuptools
- numpy =2.3.1
- black =24.8.0
- h5py =3.12.1
- ase =3.23.0
- h5py =3.14.0
- ase =3.25.0
- sphinxdft-data =0.0.1
- semantikon =0.0.12
- semantikon =0.0.20
- pint =0.24.4
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,22 @@ name = "sphinx_parser"
description = "sphinx_parser - Your pyiron-like module."
readme = "docs/README.md"
keywords = [ "pyiron",]
requires-python = ">=3.9, <3.13"
requires-python = ">=3.9, <3.14"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy==2.2.1",
"ase==3.23.0",
"h5py==3.12.1",
"semantikon==0.0.12",
"numpy==2.3.1",
"ase==3.25.0",
"h5py==3.14.0",
"semantikon==0.0.20",
"pint==0.24.4",
]
dynamic = [ "version",]
Expand Down
2 changes: 1 addition & 1 deletion sphinx_parser/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import numpy as np
from semantikon.converter import units
from semantikon.typing import u
from semantikon.metadata import u

from sphinx_parser.toolkit import fill_values

Expand Down
2 changes: 1 addition & 1 deletion sphinx_parser/src/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def _get_file_content(yml_file_name="input_data.yml"):
"",
"import numpy as np",
"from semantikon.converter import units",
"from semantikon.typing import u",
"from semantikon.metadata import u",
"",
"from sphinx_parser.toolkit import fill_values",
]
Expand Down
Loading