From b9e0ba25b6cd6a50e8db0c8e07860225e8985848 Mon Sep 17 00:00:00 2001 From: "Charles D. Kilpatrick" Date: Sun, 1 Mar 2026 16:54:22 -0600 Subject: [PATCH 1/3] Change conda environment from 'potpyri_test' to 'potpyri' --- .github/workflows/build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index d96d1c35..165a643a 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -34,7 +34,7 @@ jobs: - name: Install the Package and Remaining Dependencies shell: bash -l {0} run: | - conda activate potpyri_test + conda activate potpyri python -m pip install --upgrade pip setuptools wheel pip install . From 06f7591d7ca4d0edb4e3c162e928124dd7d4a522 Mon Sep 17 00:00:00 2001 From: "Charles D. Kilpatrick" Date: Sun, 1 Mar 2026 16:55:36 -0600 Subject: [PATCH 2/3] Rename environment from 'potpyri_test' to 'potpyri' --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 651bca0d..d05b1e57 100644 --- a/environment.yml +++ b/environment.yml @@ -1,4 +1,4 @@ -name: potpyri_test +name: potpyri channels: - conda-forge - defaults From 37473489d89bf4e590c802e40f7b73683cdb00d9 Mon Sep 17 00:00:00 2001 From: "Charles D. Kilpatrick" Date: Sun, 1 Mar 2026 16:59:28 -0600 Subject: [PATCH 3/3] Change Conda environment from potpyri_test to potpyri --- .github/workflows/build-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 165a643a..fd962efa 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -29,7 +29,7 @@ jobs: shell: bash -l {0} # Use login shell for conda commands run: | conda env create -f environment.yml - conda activate potpyri_test + conda activate potpyri - name: Install the Package and Remaining Dependencies shell: bash -l {0} @@ -41,6 +41,6 @@ jobs: - name: Run tests shell: bash -l {0} run: | - conda activate potpyri_test + conda activate potpyri pip install .[test] pytest