From 82e24907087a7790d9d00df9b33fe6516d0fa457 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Fri, 10 Nov 2023 21:38:26 +0300 Subject: [PATCH 1/2] build: added python 3.11 and 3.12 to build --- .github/workflows/build.yaml | 2 +- docs/source/changelog.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e093052..d09e100 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: platform: [ ubuntu-latest, macos-latest ] - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] runs-on: ${{ matrix.platform }} steps: diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 07b9767..f125eeb 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -7,7 +7,7 @@ Version 0.7.0 -------------- *Released on: 10/11/2023* -* Added :py:class:`pyproximal.proximal.RelaxedMumfordShah`` operator +* Added :py:class:`pyproximal.proximal.RelaxedMumfordShah` operator * Added cuda version to the proximal operator of :py:class:`pyproximal.proximal.Simplex` * Added bilinear update to :py:func:`pyproximal.optimization.primal.ProximalGradient` * Modified :py:func:`pyproximal.optimization.pnp.PlugAndPlay` function signature to allow using any proximal solver of choice From 0dbc52797d08d91e214a8dba44df961619611c68 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Fri, 10 Nov 2023 21:41:06 +0300 Subject: [PATCH 2/2] build: added python 3.11 to build --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d09e100..8a6de9d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: platform: [ ubuntu-latest, macos-latest ] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11"] runs-on: ${{ matrix.platform }} steps: