Skip to content

Commit

Permalink
Increase some version requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
ab5424 committed Aug 14, 2024
1 parent 8c05235 commit 6ddc35c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install dependencies
run: |
pip install uv
uv pip install packaging -e .[${{ matrix.version.extra }}] --resolution=${{ matrix.version.resolution }} --system
uv pip install -e .[${{ matrix.version.extra }}] --resolution=${{ matrix.version.resolution }} --system
# Fix ImportError: libEGL.so.1: ...
- name: Install libegl1-mesa-dev on Linux
if: runner.os == 'Linux'
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.0.3"
description = "Analysis tool for simulations of grain boundaries and interfaces"
authors = [{name = "Alexander Bonkowski", email = "[email protected]"}]
maintainers = [{name = "Alexander Bonkowski"}]
dependencies = ["numpy", "pandas", "scipy", "seaborn"]
dependencies = ["numpy>=1.25", "pandas>=2", "scipy>=1.12", "seaborn>=0.13"]
requires-python = ">=3.9"
readme = "README.md"
license = {file = "LICENSE"}
Expand Down Expand Up @@ -40,18 +40,18 @@ strict = [
"seaborn==0.13.2",
]
tests = [
"pytest-cov",
"pytest-split",
"pytest",
"pytest-cov>=5",
"pytest-split>=0.9",
"pytest>=8",
]
ovito = [
"ovito",
"ovito>=3.6",
]
ase = [
"ase>=3.23",
]
pymatgen = [
"pymatgen",
"pymatgen>=2024",
]

[tool.setuptools.packages.find]
Expand Down

0 comments on commit 6ddc35c

Please sign in to comment.