Skip to content

Commit 579f380

Browse files
committed
Version 1.0.0a11
1 parent 3e89466 commit 579f380

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- '**'
99

1010
env:
11-
PACKAGE_VERSION: "1.0.0a11.dev0"
11+
PACKAGE_VERSION: "1.0.0a11"
1212
PACKAGE_NAME: alpaqa
1313
PYTHON_VERSION: '3.11'
1414

.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.0a11.dev0"
9+
PACKAGE_VERSION: "1.0.0a11"
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 "a11.dev0")
3+
set(PY_VERSION_SUFFIX "a11")
44

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

doxygen/sphinx/source/install/installation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ For Debian-based systems, the .deb packages can be installed using
3333
.. code-block:: sh
3434
3535
sudo apt update
36-
sudo apt install ./libalpaqa*_1.0.0a11.dev0_amd64.deb
36+
sudo apt install ./libalpaqa*_1.0.0a11_amd64.deb
3737
3838
Different components are available:
3939

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

5858
.. code-block:: sh
5959
60-
sudo tar xzf alpaqa-1.0.0a11.dev0-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
60+
sudo tar xzf alpaqa-1.0.0a11-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
6161
6262
This requires glibc 2.17 or later. You may need to install or pre-load the
6363
following additional runtime dependencies:

pyproject.toml

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

2727
[project.optional-dependencies]
2828
docs = ["sphinx>=7.2.2,<8", "matplotlib", "breathe~=4.35.0", "furo==2023.08.19"]
29-
debug = ["alpaqa-debug==1.0.0a11.dev0"]
29+
debug = ["alpaqa-debug==1.0.0a11"]
3030
test = ["pytest>=7.2.0,<7.5", "qpalm~=1.1.4", "scipy>=1.9.3,<1.12"]
3131

3232
[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.0a11.dev0"]
10-
version = "1.0.0a11.dev0"
9+
dependencies = ["alpaqa==1.0.0a11"]
10+
version = "1.0.0a11"
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.0a11.dev0"
4+
__version__ = "1.0.0a11"
55

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

0 commit comments

Comments
 (0)