Skip to content

Commit

Permalink
Version 1.0.0a18.dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Mar 26, 2024
1 parent 6b39cf3 commit 9641fee
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheel-short-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion examples/CMake/Solver/conanfile.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[requires]
alpaqa/1.0.0-alpha.16
alpaqa/1.0.0-alpha.17
[generators]
CMakeDeps
CMakeToolchain
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions python/alpaqa-debug/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ license = { "file" = "../../LICENSE" }
authors = [{ "name" = "Pieter P", "email" = "[email protected]" }]
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]
Expand Down
2 changes: 1 addition & 1 deletion python/alpaqa/__init__.py
Original file line number Diff line number Diff line change
@@ -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__
Expand Down
4 changes: 2 additions & 2 deletions scripts/dev/install-locally.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9641fee

Please sign in to comment.