Skip to content

Commit b70f89a

Browse files
committed
Version 1.0.0a13
1 parent 87d527e commit b70f89a

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
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.0a13.dev0"
13+
PACKAGE_VERSION: "1.0.0a13"
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.0a13.dev0"
9+
PACKAGE_VERSION: "1.0.0a13"
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 "a13.dev0")
3+
set(PY_VERSION_SUFFIX "a13")
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
@@ -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.0a13.dev0_amd64.deb
37+
sudo apt install ./libalpaqa*_1.0.0a13_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.0a13.dev0-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
61+
sudo tar xzf alpaqa-1.0.0a13-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:

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.0a13.dev0"]
29+
debug = ["alpaqa-debug==1.0.0a13"]
3030
test = ["pytest>=7.2.0,<7.5", "qpalm~=1.2.1", "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.0a13.dev0"]
10-
version = "1.0.0a13.dev0"
9+
dependencies = ["alpaqa==1.0.0a13"]
10+
version = "1.0.0a13"
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.0a13.dev0"
4+
__version__ = "1.0.0a13"
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.0a13.dev0" "alpaqa-debug==1.0.0a13.dev0"
93+
"alpaqa==1.0.0a13" "alpaqa-debug==1.0.0a13"
9494
pip install -f staging \
95-
"alpaqa[test]==1.0.0a13.dev0" "alpaqa-debug==1.0.0a13.dev0"
95+
"alpaqa[test]==1.0.0a13" "alpaqa-debug==1.0.0a13"
9696
fi
9797
pytest

0 commit comments

Comments
 (0)