diff --git a/.github/workflows/wheel-short-test.yml b/.github/workflows/wheel-short-test.yml index 6cd6f725be..273f88d371 100644 --- a/.github/workflows/wheel-short-test.yml +++ b/.github/workflows/wheel-short-test.yml @@ -10,7 +10,7 @@ on: types: ['released', 'prereleased'] env: - PACKAGE_VERSION: "1.0.0a17" + PACKAGE_VERSION: "1.0.0a18.dev0" PACKAGE_NAME: alpaqa PYTHON_VERSION: '3.11' diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index c462e5e0f0..76787dfe57 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -6,7 +6,7 @@ on: types: ['released', 'prereleased'] env: - PACKAGE_VERSION: "1.0.0a17" + PACKAGE_VERSION: "1.0.0a18.dev0" PACKAGE_NAME: alpaqa C_EXTENSIONS: _alpaqa diff --git a/CMakeLists.txt b/CMakeLists.txt index f9249e8701..39022001c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(alpaqa HOMEPAGE_URL "https://github.com/kul-optec/alpaqa" LANGUAGES CXX ) -set(PY_VERSION_SUFFIX "a17") +set(PY_VERSION_SUFFIX "a18.dev0") include(CTest) list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/find") diff --git a/examples/CMake/Solver/conanfile.txt b/examples/CMake/Solver/conanfile.txt index d7b32dd3ec..b9f0f382f9 100644 --- a/examples/CMake/Solver/conanfile.txt +++ b/examples/CMake/Solver/conanfile.txt @@ -1,5 +1,5 @@ [requires] -alpaqa/1.0.0-alpha.16 +alpaqa/1.0.0-alpha.17 [generators] CMakeDeps CMakeToolchain diff --git a/pyproject.toml b/pyproject.toml index b1d80fb001..cbb641e188 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dynamic = ["version", "description"] [project.optional-dependencies] docs = ["breathe~=4.35.0", "sphinx>=7.2.2,<8", "sphinx-tabs~=3.4.4", "sphinxcontrib-matlabdomain~=0.20.2", "sphinxcontrib-moderncmakedomain~=3.27.0", "furo==2023.08.19", "matplotlib"] -debug = ["alpaqa-debug==1.0.0a17"] +debug = ["alpaqa-debug==1.0.0a18.dev0"] test = ["pytest>=7.2.0,<7.5", "qpalm~=1.2.1", "scipy>=1.9.3,<1.12"] [project.urls] diff --git a/python/alpaqa-debug/pyproject.toml b/python/alpaqa-debug/pyproject.toml index a117560cbd..89f01fc6d9 100644 --- a/python/alpaqa-debug/pyproject.toml +++ b/python/alpaqa-debug/pyproject.toml @@ -6,8 +6,8 @@ license = { "file" = "../../LICENSE" } authors = [{ "name" = "Pieter P", "email" = "pieter.p.dev@outlook.com" }] keywords = [] classifiers = [] -dependencies = ["alpaqa==1.0.0a17"] -version = "1.0.0a17" +dependencies = ["alpaqa==1.0.0a18.dev0"] +version = "1.0.0a18.dev0" description = "Debug symbols for the alpaqa package." [project.urls] diff --git a/python/alpaqa/__init__.py b/python/alpaqa/__init__.py index 94857c0fe3..497dba3d00 100644 --- a/python/alpaqa/__init__.py +++ b/python/alpaqa/__init__.py @@ -1,7 +1,7 @@ """ Augmented Lagrangian and PANOC solvers for nonconvex numerical optimization. """ -__version__ = "1.0.0a17" +__version__ = "1.0.0a18.dev0" from .alpaqa import * from .alpaqa import __c_version__ diff --git a/scripts/dev/install-locally.sh b/scripts/dev/install-locally.sh index 156d660e73..de6d7ad0af 100755 --- a/scripts/dev/install-locally.sh +++ b/scripts/dev/install-locally.sh @@ -90,8 +90,8 @@ else -C--cross="$pfx/$triple.py-build-cmake.cross.toml" \ -C--local="$PWD/$config" pip install -f staging --force-reinstall --no-deps \ - "alpaqa==1.0.0a17" "alpaqa-debug==1.0.0a17" + "alpaqa==1.0.0a18.dev0" "alpaqa-debug==1.0.0a18.dev0" pip install -f staging \ - "alpaqa[test]==1.0.0a17" "alpaqa-debug==1.0.0a17" + "alpaqa[test]==1.0.0a18.dev0" "alpaqa-debug==1.0.0a18.dev0" fi pytest