Skip to content

Commit f4d8da6

Browse files
committed
Fixing entries
1 parent b94d243 commit f4d8da6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ python:
55
- 3.11
66
- 3.12
77
- 3.13
8-
- 3.14
98
numpy:
109
- 1.22
1110
- 1.22
1211
- 1.23
1312
- 1.26
1413
- 1.26
14+
- 2.1
1515
zip_keys:
1616
- python
1717
- numpy

pyqint/gto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __setstate__(self, d):
2727
self.p = d[1]
2828
self.alpha = d[2]
2929
self.l = d[3]
30-
self.m = d[3]
30+
self.m = d[4]
3131
self.n = d[5]
3232
self.gto = PyGTO(self.c, self.p, self.alpha, self.l, self.m, self.n)
3333

0 commit comments

Comments
 (0)