Skip to content

Commit ccc9361

Browse files
committed
Version 1.0.0a14
1 parent 65a3e43 commit ccc9361

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
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.0a14.dev0"
13+
PACKAGE_VERSION: "1.0.0a14"
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.0a14.dev0"
9+
PACKAGE_VERSION: "1.0.0a14"
1010
PACKAGE_NAME: alpaqa
1111
C_EXTENSIONS: _alpaqa
1212

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.24)
22
project(alpaqa VERSION 1.0.0 LANGUAGES CXX)
3-
set(PY_VERSION_SUFFIX "a14.dev0")
3+
set(PY_VERSION_SUFFIX "a14")
44

55
# Look for a C and Fortran compiler (optional)
66
include(CheckLanguage)

doxygen/sphinx/source/install/installation.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For Debian-based systems, the .deb packages can be installed using
3434
.. code-block:: sh
3535
3636
sudo apt update
37-
sudo apt install ./libalpaqa*_1.0.0a14.dev0_amd64.deb
37+
sudo apt install ./libalpaqa*_1.0.0a14_amd64.deb
3838
3939
Different components are available:
4040

@@ -58,7 +58,7 @@ Alternatively, the .tar.gz file can be extracted and installed manually.
5858

5959
.. code-block:: sh
6060
61-
sudo tar xzf alpaqa-1.0.0a14.dev0-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
61+
sudo tar xzf alpaqa-1.0.0a14-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
6262
6363
This requires glibc 2.17 or later. You may need to install or pre-load the
6464
following additional runtime dependencies:
@@ -74,7 +74,7 @@ command in the MATLAB command window:
7474

7575
.. code-block:: matlab
7676
77-
unzip(['https://github.com/kul-optec/alpaqa/releases/download/1.0.0a14.dev0/alpaqa-matlab-' computer('arch') '.zip'], userpath)
77+
unzip(['https://github.com/kul-optec/alpaqa/releases/download/1.0.0a14/alpaqa-matlab-' computer('arch') '.zip'], userpath)
7878
7979
You need CasADi to be installed as well: https://web.casadi.org/get
8080

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 = ["sphinx>=7.2.2,<8", "matplotlib", "breathe~=4.35.0", "furo==2023.08.19"]
30-
debug = ["alpaqa-debug==1.0.0a14.dev0"]
30+
debug = ["alpaqa-debug==1.0.0a14"]
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.0a14.dev0"]
10-
version = "1.0.0a14.dev0"
9+
dependencies = ["alpaqa==1.0.0a14"]
10+
version = "1.0.0a14"
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.0a14.dev0"
4+
__version__ = "1.0.0a14"
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
@@ -90,8 +90,8 @@ else
9090
-C--cross="$pfx/$triple.py-build-cmake.cross.toml" \
9191
-C--local="$PWD/$config"
9292
pip install -f staging --force-reinstall --no-deps \
93-
"alpaqa==1.0.0a14.dev0" "alpaqa-debug==1.0.0a14.dev0"
93+
"alpaqa==1.0.0a14" "alpaqa-debug==1.0.0a14"
9494
pip install -f staging \
95-
"alpaqa[test]==1.0.0a14.dev0" "alpaqa-debug==1.0.0a14.dev0"
95+
"alpaqa[test]==1.0.0a14" "alpaqa-debug==1.0.0a14"
9696
fi
9797
pytest

0 commit comments

Comments
 (0)