Skip to content

Commit a126555

Browse files
committed
fix: remove pysisyphus-references; moved boys to testing
1 parent c99ce0e commit a126555

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/pythonapp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v3

sympleints/cart2sph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
from scipy.special import factorial as fact
1818
from scipy.special import binom
1919

20-
from pysisyphus.wavefunction.helpers import canonical_order
21-
from pysisyphus.wavefunction.normalization import get_lmn_factors
20+
from sympleints.helpers import canonical_order
21+
from sympleints.testing.normalization import get_lmn_factors
2222

2323

2424
ZERO_THRESH = 1e-14

sympleints/graphs/Transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from sympleints.graphs.AngMoms import AngMoms, CartAngMom, SphAngMom
1111
from sympleints.helpers import BFKind, shell_iter
1212

13-
from pysisyphus.wavefunction.cart2sph import expand_sph_quantum_numbers
13+
from sympleints.cart2sph import expand_sph_quantum_numbers
1414

1515

1616
KEY_MAP = {

sympleints/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,8 @@ def parse_args(args):
11271127
)
11281128
parser.add_argument(
11291129
"--boys-func",
1130-
default="pysisyphus.wavefunction.ints.boys",
1130+
# default="pysisyphus.wavefunction.ints.boys",
1131+
default="sympleints.testing.boys",
11311132
help="Which Boys-function to use.",
11321133
)
11331134
parser.add_argument("--normalize", choices=normalization_map.keys(), default="none")
File renamed without changes.

tests/test_boys/test_boys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import numpy as np
44

5-
from sympleints.boys import boys_quad, get_boys_func
5+
from sympleints.testing.boys import boys_quad, get_boys_func
66

77

88
def test_boys(atol=2e-10):

0 commit comments

Comments
 (0)