Skip to content

Commit

Permalink
XTB 6.3.3
Browse files Browse the repository at this point in the history
Since we updated numpy on the arc_env, it allowed us inadvertently to update our xtb to 6.6.0 which means we were not writing the correct input file for xtb anymore (STILL TO BE ASSESSED)
Thus, we need to revert our xtb_env to 6.3.3 for the time being
  • Loading branch information
calvinp0 committed May 13, 2023
1 parent a2e18fd commit 2d40aa8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arc/settings/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@
break

arc_pypath_1 = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(sys.executable))),
'xtb_env', 'bin', 'python')
'arc_env', 'bin', 'python')
arc_pypath_2 = os.path.join(home, 'anaconda3', 'envs', 'arc_env', 'bin', 'python')
arc_pypath_3 = os.path.join(home, 'miniconda3', 'envs', 'arc_env', 'bin', 'python')
arc_pypath_4 = os.path.join(home, '.conda', 'envs', 'arc_env', 'bin', 'python')
Expand Down
8 changes: 6 additions & 2 deletions devtools/install_xtb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ else
conda activate xtb_env
fi

$COMMAND_PKG install -c conda-forge xtb -y
# Install xtb
$COMMAND_PKG install -n xtb_env -c conda-forge xtb=6.3.3 -y

# Install pyyaml
$COMMAND_PKG install -c anaconda pyyaml -y
$COMMAND_PKG activate base

$COMMAND_PKG deactivate

0 comments on commit 2d40aa8

Please sign in to comment.