From 8bd52cc265a493e9952ce0e349ae5376d3e1f71d Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Tue, 14 Jan 2025 01:56:30 -0500 Subject: [PATCH 1/5] Update changelog.rst --- docs/source/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 86d48913..4c4949b3 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -.. vX.Y.0 / 2024-MM-DD (Unreleased) +.. vX.Y.0 / 2025-MM-DD (Unreleased) .. -------------------- .. .. Breaking Changes From 3ea66abe446caf3001483e050618c33dbaacb189 Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Tue, 14 Jan 2025 02:07:42 -0500 Subject: [PATCH 2/5] Update CI.yml --- .github/workflows/CI.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 05b9c7e1..92d2ff6d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -119,15 +119,13 @@ jobs: fetch-depth: 0 - name: Create Environment - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: activate-environment: test environment-file: devtools/conda-envs/${{ matrix.cfg.conda-env }}.yaml python-version: ${{ matrix.cfg.python-version }} auto-activate-base: false show-channel-urls: true - miniforge-variant: Mambaforge - use-mamba: true add-pip-as-python-dependency: true # 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. @@ -163,8 +161,8 @@ jobs: - name: Environment Information run: | - mamba info - mamba list + conda info + conda list - name: Install QCEngine run: | @@ -206,21 +204,19 @@ jobs: - uses: actions/checkout@v3 - name: Create Environment - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: activate-environment: test environment-file: devtools/conda-envs/${{ matrix.cfg.conda-env }}.yaml python-version: ${{ matrix.cfg.python-version }} auto-activate-base: false - miniforge-variant: Mambaforge - use-mamba: true add-pip-as-python-dependency: true channels: conda-forge - name: Environment Information run: | - mamba info - mamba list --show-channel-urls + conda info + conda list --show-channel-urls - name: Build Documentation run: | From d2a0ec7918b8a8dcaef7a218719ef81d70374c74 Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Tue, 14 Jan 2025 02:22:35 -0500 Subject: [PATCH 3/5] Update mace.yaml --- devtools/conda-envs/mace.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/conda-envs/mace.yaml b/devtools/conda-envs/mace.yaml index 7d7abb69..8fd3772a 100644 --- a/devtools/conda-envs/mace.yaml +++ b/devtools/conda-envs/mace.yaml @@ -11,7 +11,7 @@ dependencies: - pydantic>=1.0.0 # mace deps - - pymace + - pymace=0.3.6 - numpy<2.0 # until conda package imposes # Testing From 06b69076168b5bb492e9bee3761a38e478006e45 Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Tue, 14 Jan 2025 13:03:10 -0500 Subject: [PATCH 4/5] Update changelog.rst --- docs/source/changelog.rst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 4c4949b3..f49fab58 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -28,6 +28,28 @@ Changelog .. - UNSOLVED (:issue:`397`) extras failed +v0.31.0 / 2025-MM-DD (Unreleased) +-------------------- + +Breaking Changes +++++++++++++++++ + +New Features +++++++++++++ + +Enhancements +++++++++++++ +- (:pr:`463`) Maint - Pin to QCElemental <0.70 since we now know QCSchema v2 release schedule. +- (:pr:`463`) MACE - New v0.3.9 release yields a pytorch error, so recommend pymace=0.3.6 . + +Bug Fixes ++++++++++ + +Misc. ++++++ +- (:pr:`457`) Docs - Fix auto-numbering on a documentation page. @mikemhenry + + v0.30.0 / 2024-06-25 -------------------- From 2c4974b985988ba83c2b771529d2b186ba82001d Mon Sep 17 00:00:00 2001 From: "Lori A. Burns" Date: Tue, 14 Jan 2025 13:07:48 -0500 Subject: [PATCH 5/5] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 20958b24..bec6a79f 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ cmdclass=versioneer.get_cmdclass(), packages=setuptools.find_packages(), setup_requires=[] + pytest_runner, - install_requires=["pyyaml", "py-cpuinfo", "psutil", "qcelemental>=0.24.0,<0.30.0", "pydantic>=1.8.2"], + install_requires=["pyyaml", "py-cpuinfo", "psutil", "qcelemental>=0.24.0,<0.70.0", "pydantic>=1.8.2"], entry_points={"console_scripts": ["qcengine=qcengine.cli:main"]}, extras_require={ "docs": [