Skip to content

Commit

Permalink
Version 1.0.0a14
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Nov 15, 2023
1 parent 65a3e43 commit ccc9361
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 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.0a14.dev0"
PACKAGE_VERSION: "1.0.0a14"
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.0a14.dev0"
PACKAGE_VERSION: "1.0.0a14"
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
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.24)
project(alpaqa VERSION 1.0.0 LANGUAGES CXX)
set(PY_VERSION_SUFFIX "a14.dev0")
set(PY_VERSION_SUFFIX "a14")

# Look for a C and Fortran compiler (optional)
include(CheckLanguage)
Expand Down
6 changes: 3 additions & 3 deletions doxygen/sphinx/source/install/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ For Debian-based systems, the .deb packages can be installed using
.. code-block:: sh
sudo apt update
sudo apt install ./libalpaqa*_1.0.0a14.dev0_amd64.deb
sudo apt install ./libalpaqa*_1.0.0a14_amd64.deb
Different components are available:

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

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

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

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 = ["sphinx>=7.2.2,<8", "matplotlib", "breathe~=4.35.0", "furo==2023.08.19"]
debug = ["alpaqa-debug==1.0.0a14.dev0"]
debug = ["alpaqa-debug==1.0.0a14"]
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" = "pieter.p.dev@outlook.com" }]
keywords = []
classifiers = []
dependencies = ["alpaqa==1.0.0a14.dev0"]
version = "1.0.0a14.dev0"
dependencies = ["alpaqa==1.0.0a14"]
version = "1.0.0a14"
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.0a14.dev0"
__version__ = "1.0.0a14"

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.0a14.dev0" "alpaqa-debug==1.0.0a14.dev0"
"alpaqa==1.0.0a14" "alpaqa-debug==1.0.0a14"
pip install -f staging \
"alpaqa[test]==1.0.0a14.dev0" "alpaqa-debug==1.0.0a14.dev0"
"alpaqa[test]==1.0.0a14" "alpaqa-debug==1.0.0a14"
fi
pytest

0 comments on commit ccc9361

Please sign in to comment.