Skip to content

Commit

Permalink
update node12 to 16. retract adcc
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed Aug 1, 2023
1 parent 6efe448 commit 7ed07cc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ${{ matrix.cfg.runs-on }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -87,7 +87,7 @@ jobs:
miniforge-variant: Mambaforge
use-mamba: true
add-pip-as-python-dependency: true
#channels: conda-forge
# note: conda-forge chnl req'd for Mambaforge, but we'll spec in file, not here `channels: conda-forge,...`
# note: any activate/deactivate use the conda cmd. other cmds use mamba cmd.

- name: Special Config - NWChem
Expand All @@ -100,6 +100,8 @@ jobs:
run: |
qcore --accept-license
# note: conda remove --force, not mamba remove --force b/c https://github.com/mamba-org/mamba/issues/412
# alt. is micromamba but not yet ready for setup-miniconda https://github.com/conda-incubator/setup-miniconda/issues/75
- name: Special Config - QCEngine Dep
if: "(matrix.cfg.label == 'Psi4-nightly') || (matrix.cfg.label == 'ADCC') || (matrix.cfg.label == 'optimization-dispersion')"
run: |
Expand All @@ -109,8 +111,6 @@ jobs:
- name: Special Config - Faux Pydantic Upgrade
if: "(matrix.cfg.label == 'Psi4-nightly') || (matrix.cfg.label == 'ADCC') || (matrix.cfg.label == 'optimization-dispersion')"
run: |
ls -l ${CONDA_PREFIX}/lib/python${{ matrix.cfg.python-version }}/site-packages
ls -l ${CONDA_PREFIX}/lib/python${{ matrix.cfg.python-version }}/site-packages/psi4/driver
sed -i s/from\ pydantic\ /from\ pydantic.v1\ /g ${CONDA_PREFIX}/lib/python${{ matrix.cfg.python-version }}/site-packages/psi4/driver/*py
- name: Environment Information
Expand All @@ -134,7 +134,7 @@ jobs:
pytest -rws -v --cov=qcengine --color=yes --cov-report=xml qcengine/
- name: CodeCov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3

release_sphinx:
needs: [build]
Expand All @@ -154,7 +154,7 @@ jobs:
runs-on: ${{ matrix.cfg.runs-on }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Create Environment
uses: conda-incubator/setup-miniconda@v2
Expand Down
11 changes: 7 additions & 4 deletions devtools/conda-envs/adcc.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
name: test
channels:
#- adcc
- defaults
- psi4/label/dev
- conda-forge
- nodefaults
dependencies:
- adcc>=0.15.7
- psi4=1.8.1
- conda-forge/label/libint_dev::libint
- conda-forge::adcc>=0.15.7
- psi4
- blas=*=mkl # not needed but an example of disuading solver from openblas and old psi
- intel-openmp!=2019.5

# Core
- python
- pyyaml
- py-cpuinfo
- psutil
- qcelemental >=0.26.0
Expand Down

0 comments on commit 7ed07cc

Please sign in to comment.