Skip to content

Commit ffa6fa3

Browse files
committed
Version 1.0.0a20.dev0
1 parent 5bea076 commit ffa6fa3

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/wheel-short-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
types: ['released', 'prereleased']
1111

1212
env:
13-
PACKAGE_VERSION: "1.0.0a19"
13+
PACKAGE_VERSION: "1.0.0a20.dev0"
1414
PACKAGE_NAME: alpaqa
1515
PYTHON_VERSION: '3.11'
1616

.github/workflows/wheel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
types: ['released', 'prereleased']
77

88
env:
9-
PACKAGE_VERSION: "1.0.0a19"
9+
PACKAGE_VERSION: "1.0.0a20.dev0"
1010
PACKAGE_NAME: alpaqa
1111
C_EXTENSIONS: _alpaqa
1212

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project(alpaqa
55
HOMEPAGE_URL "https://github.com/kul-optec/alpaqa"
66
LANGUAGES CXX
77
)
8-
set(PY_VERSION_SUFFIX "a19")
8+
set(PY_VERSION_SUFFIX "a20.dev0")
99
include(CTest)
1010
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/find")
1111

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class AlpaqaRecipe(ConanFile):
1010
name = "alpaqa"
11-
version = "1.0.0-alpha.19"
11+
version = "1.0.0-alpha.20"
1212

1313
# Optional metadata
1414
license = "LGPLv3"

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dynamic = ["version", "description"]
2727

2828
[project.optional-dependencies]
2929
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"]
30-
debug = ["alpaqa-debug==1.0.0a19"]
30+
debug = ["alpaqa-debug==1.0.0a20.dev0"]
3131
test = ["pytest>=7.2.0,<7.5", "qpalm~=1.2.1", "scipy>=1.9.3,<1.12"]
3232

3333
[project.urls]

python/alpaqa-debug/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ license = { "file" = "../../LICENSE" }
66
authors = [{ "name" = "Pieter P", "email" = "[email protected]" }]
77
keywords = []
88
classifiers = []
9-
dependencies = ["alpaqa==1.0.0a19"]
10-
version = "1.0.0a19"
9+
dependencies = ["alpaqa==1.0.0a20.dev0"]
10+
version = "1.0.0a20.dev0"
1111
description = "Debug symbols for the alpaqa package."
1212

1313
[project.urls]

python/alpaqa/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Augmented Lagrangian and PANOC solvers for nonconvex numerical optimization.
33
"""
4-
__version__ = "1.0.0a19"
4+
__version__ = "1.0.0a20.dev0"
55

66
from .alpaqa import *
77
from .alpaqa import __c_version__

scripts/dev/install-locally.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ else
9393
-C--cross="$pfx/$triple.py-build-cmake.cross.toml" \
9494
-C--local="$PWD/$config"
9595
pip install -f staging --force-reinstall --no-deps \
96-
"alpaqa==1.0.0a19" "alpaqa-debug==1.0.0a19"
96+
"alpaqa==1.0.0a20.dev0" "alpaqa-debug==1.0.0a20.dev0"
9797
pip install -f staging \
98-
"alpaqa[test]==1.0.0a19" "alpaqa-debug==1.0.0a19"
98+
"alpaqa[test]==1.0.0a20.dev0" "alpaqa-debug==1.0.0a20.dev0"
9999
fi
100100
pytest

0 commit comments

Comments
 (0)