From 936ae3e2f9c7072367544a476c933f9a732ec91d Mon Sep 17 00:00:00 2001 From: Paul Jonas Jost <70631928+PaulJonasJost@users.noreply.github.com> Date: Mon, 15 Apr 2024 14:17:25 +0200 Subject: [PATCH 1/3] Removing Benchmark collection for deploy. Update action versions. (#1371) --- .github/workflows/deploy.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0ee0cc564..898a479b0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,10 +13,15 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 + + - name: Remove direct dependencies from setup.cfg + # Remove any "git+https"-based dependencies that are not supported + # by PyPI and are only required for testing. + run: sed -i '/git+https/d' python/sdist/setup.cfg - name: Prepare python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} From 8d535c3845c1acaad53d7c5919d1782b05f6640e Mon Sep 17 00:00:00 2001 From: PaulJonasJost Date: Tue, 16 Apr 2024 10:34:47 +0200 Subject: [PATCH 2/3] Updated changelog accordingly --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 55253f377..da8a08f33 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -37,7 +37,7 @@ Release notes * Misc * Updated Code to match dependency updates (#1316, #1344, #1346, #1345) * Ignore code formatting in git blame (#1317) - * Updated deployment method (#1341) + * Updated deployment method (#1341, #1371, #1373) * add pyupgrade to codechecks (#1352) * Temporarily require scipy<1.13.0 for pypesto[pymc] (#1360) From d8fa9815f3e995c000cef3cdcb70024d4834556b Mon Sep 17 00:00:00 2001 From: Paul Jonas Jost <70631928+PaulJonasJost@users.noreply.github.com> Date: Tue, 16 Apr 2024 13:14:55 +0200 Subject: [PATCH 3/3] fixed wrong filepath for config file. (#1373) --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 898a479b0..4cb46a6e3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: - name: Remove direct dependencies from setup.cfg # Remove any "git+https"-based dependencies that are not supported # by PyPI and are only required for testing. - run: sed -i '/git+https/d' python/sdist/setup.cfg + run: sed -i '/git+https/d' setup.cfg - name: Prepare python ${{ matrix.python-version }} uses: actions/setup-python@v5