Skip to content

Commit 5c9e621

Browse files
committed
Update .github/workflows/python-package-conda.yml
1 parent d564616 commit 5c9e621

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/python-package-conda.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v2
13-
- uses: actions/setup-node@v2
14-
with:
15-
node-version: '16'
1613
- name: Set up Python 3.9
1714
uses: actions/setup-python@v2
1815
with:
@@ -22,6 +19,9 @@ jobs:
2219
# $CONDA is an environment variable pointing to the root of the miniconda directory
2320
echo $CONDA/bin >> $GITHUB_PATH
2421
- name: Install dependencies
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: ${{ matrix.node-version }}
2525
run: |
2626
conda env update --file environment.yml --name base
2727
- name: Lint with flake8

cell2mol/c2m_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def assign_spin (cell: object, debug: int=0) -> object:
293293
else:
294294
lig.magnetism(2)
295295

296-
if debug >= 1: print(f"{mol.type=}, {mol.formula=}, {mol.spin=} {spin_rf=}")
296+
if debug >= 1: print(f"{mol.type=}, {mol.formula=}, {mol.spin=}")
297297
if debug >= 1: print(f"{met.label=} {met.hapticity=} {met.hapttype=} {met.geometry=} {met.coordination_number=} {met.coordinating_atoms=}")
298298

299299
#elif (period == 5 or period == 6 ) and (d_elec in [2, 3] and met.hapticity == False) :

0 commit comments

Comments
 (0)