Skip to content

Commit 7fedf53

Browse files
authored
Use new uv package manager to install deps in CI (#133)
* use new uv package manager to install deps in CI * use torch.linalg.cross to silence UserWarning about missing dim kwarg #132 (comment) * fix Failed to parse `git+https://gitlab.com/ase/ase` Caused by: URL requirement must be preceded by a package name. Add the name of the package before the URL (e.g., `package_name @ https://...`). * use windows-compat uv install command * drop git+ from ase install URL * quotes maybe? * restore git+ * try ase source install with --upgrade * generate constraints.txt in CI to prevent uv from downgrading ase installed from git to pypi version * install ase from git last to prevent uv downgrade
1 parent 3719f70 commit 7fedf53

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

.github/workflows/test.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,17 @@ jobs:
3333
cache: pip
3434
cache-dependency-path: pyproject.toml
3535

36+
- name: Install uv
37+
run: pip install uv
38+
3639
- name: Install dependencies
3740
run: |
38-
pip install cython
41+
uv pip install cython --system
3942
# install ase from main branch until FrechetCellFilter is released
40-
# TODO remove pip install git+https://gitlab.com/ase/ase
41-
pip install git+https://gitlab.com/ase/ase
43+
# TODO remove uv pip install git+https://gitlab.com/ase/ase
4244
python setup.py build_ext --inplace
43-
pip install -e .[test]
45+
uv pip install -e .[test] --system
46+
uv pip install --upgrade 'ase@git+https://gitlab.com/ase/ase' --system
4447
4548
- name: Run Tests
4649
run: pytest --capture=no --cov --cov-report=xml .

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default_install_hook_types: [pre-commit, commit-msg]
44

55
repos:
66
- repo: https://github.com/astral-sh/ruff-pre-commit
7-
rev: v0.2.2
7+
rev: v0.3.0
88
hooks:
99
- id: ruff
1010
args: [--fix]
@@ -46,7 +46,7 @@ repos:
4646
- svelte
4747

4848
- repo: https://github.com/pre-commit/mirrors-eslint
49-
rev: v9.0.0-beta.0
49+
rev: v9.0.0-beta.1
5050
hooks:
5151
- id: eslint
5252
types: [file]

chgnet/graph/graph.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ def add_edge(self, center_index, neighbor_index, image, distance) -> None:
186186
# is the reverse of our DE
187187
if added_DE == this_directed_edge:
188188
# Add UDE index to this DE
189-
this_directed_edge.info[
190-
"undirected_edge_index"
191-
] = added_DE.info["undirected_edge_index"]
189+
this_directed_edge.info["undirected_edge_index"] = (
190+
added_DE.info["undirected_edge_index"]
191+
)
192192

193193
# At the center node, draw edge with this DE
194194
self.nodes[center_index].add_neighbor(

chgnet/model/model.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,9 @@ def from_graphs(
807807
else:
808808
strain = None
809809
lattice = graph.lattice
810-
volumes.append(torch.dot(lattice[0], torch.cross(lattice[1], lattice[2])))
810+
volumes.append(
811+
torch.dot(lattice[0], torch.linalg.cross(lattice[1], lattice[2]))
812+
)
811813
strains.append(strain)
812814

813815
# Bonds

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ ignore = [
9999
"EM",
100100
"ERA001", # found commented out code
101101
"FBT001", # Boolean positional argument in function
102+
"ISC001",
102103
"FBT002", # Boolean keyword argument in function
103104
"NPY002", # TODO replace legacy np.random.seed
104105
"PLR", # pylint refactor

site/make_docs.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- prettier badges linking to source code on GitHub
44
- remove bold tags since they break inline code.
55
"""
6+
67
from __future__ import annotations
78

89
import json

0 commit comments

Comments
 (0)