Skip to content

Commit

Permalink
Version 1.0.0a15
Browse files Browse the repository at this point in the history
tttapa committed Nov 22, 2023
1 parent 3a72f79 commit e4b51d2
Showing 10 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheel-short-test.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ on:
types: ['released', 'prereleased']

env:
PACKAGE_VERSION: "1.0.0a15.dev0"
PACKAGE_VERSION: "1.0.0a15"
PACKAGE_NAME: alpaqa
PYTHON_VERSION: '3.11'

2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ on:
types: ['released', 'prereleased']

env:
PACKAGE_VERSION: "1.0.0a15.dev0"
PACKAGE_VERSION: "1.0.0a15"
PACKAGE_NAME: alpaqa
C_EXTENSIONS: _alpaqa

2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ project(alpaqa
HOMEPAGE_URL "https://github.com/kul-optec/alpaqa"
LANGUAGES CXX
)
set(PY_VERSION_SUFFIX "a15.dev0")
set(PY_VERSION_SUFFIX "a15")
include(CTest)
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/find")

14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![CI Tests: C++](https://github.com/kul-optec/alpaqa/actions/workflows/linux.yml/badge.svg)](https://github.com/kul-optec/alpaqa/actions/workflows/linux.yml)
[![CI Tests: Python](https://github.com/kul-optec/alpaqa/actions/workflows/wheel-short-test.yml/badge.svg)](https://github.com/kul-optec/alpaqa/actions/workflows/wheel-short-test.yml)
[![CI: Matlab](https://github.com/kul-optec/alpaqa/actions/workflows/matlab.yml/badge.svg)](https://github.com/kul-optec/alpaqa/actions/workflows/matlab.yml)
[![Docs](https://img.shields.io/badge/Documentation-1.0.0a14-blue?logo=sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/index.html)
[![Docs](https://img.shields.io/badge/Documentation-1.0.0a15-blue?logo=sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/index.html)
[![PyPI Downloads](https://img.shields.io/pypi/dm/alpaqa?label=PyPI&logo=python)](https://pypi.org/project/alpaqa)
[![GitHub all releases](https://img.shields.io/github/downloads/kul-optec/alpaqa/total?label=Downloads&logo=cplusplus)](https://github.com/kul-optec/alpaqa/releases)
[![GitHub License](https://img.shields.io/github/license/kul-optec/alpaqa?label=License&logo=gnu)](https://github.com/kul-optec/alpaqa/blob/develop/LICENSE)
@@ -32,11 +32,11 @@ $$

## Documentation

- [**Documentation** (Sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/index.html)
- [**Python examples**](https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/examples/index.html)
- [**C++ documentation** (Doxygen)](https://kul-optec.github.io/alpaqa/1.0.0a14/Doxygen/index.html)
- [**C++ examples**](https://kul-optec.github.io/alpaqa/1.0.0a14/Doxygen/examples.html)
- [**Matlab documentation**](https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/reference/matlab-api.html)
- [**Documentation** (Sphinx)](https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/index.html)
- [**Python examples**](https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/examples/index.html)
- [**C++ documentation** (Doxygen)](https://kul-optec.github.io/alpaqa/1.0.0a15/Doxygen/index.html)
- [**C++ examples**](https://kul-optec.github.io/alpaqa/1.0.0a15/Doxygen/examples.html)
- [**Matlab documentation**](https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/reference/matlab-api.html)

## Installation

@@ -47,7 +47,7 @@ python3 -m pip install --upgrade --pre alpaqa
```

For more information, please see the full
[installation instructions](https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/install/installation.html).
[installation instructions](https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/install/installation.html).

## Publications

6 changes: 3 additions & 3 deletions doxygen/sphinx/source/install/installation.rst
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ For Debian-based systems, the .deb packages can be installed using
.. code-block:: sh
sudo apt update
sudo apt install ./libalpaqa*_1.0.0a15.dev0_amd64.deb
sudo apt install ./libalpaqa*_1.0.0a15_amd64.deb
Different components are available:

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

.. code-block:: sh
sudo tar xzf alpaqa-1.0.0a15.dev0-Linux-x86_64.tar.gz -C /usr/local --strip-components=1
sudo tar xzf alpaqa-1.0.0a15-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:
@@ -92,7 +92,7 @@ command in the MATLAB command window:

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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.0a15.dev0"]
debug = ["alpaqa-debug==1.0.0a15"]
test = ["pytest>=7.2.0,<7.5", "qpalm~=1.2.1", "scipy>=1.9.3,<1.12"]

[project.urls]
12 changes: 6 additions & 6 deletions python/README.rst
Original file line number Diff line number Diff line change
@@ -23,11 +23,11 @@ The solvers in this library solve minimization problems of the following form:
Documentation
-------------

- `Documentation (Sphinx) <https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/index.html>`_
- `Python examples <https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/examples/index.html>`_
- `Documentation (Doxygen) <https://kul-optec.github.io/alpaqa/1.0.0a14/Doxygen/index.html>`_
- `C++ examples <https://kul-optec.github.io/alpaqa/1.0.0a14/Doxygen/examples.html>`_
- `Matlab documentation <https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/reference/matlab-api.html>`_
- `Documentation (Sphinx) <https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/index.html>`_
- `Python examples <https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/examples/index.html>`_
- `Documentation (Doxygen) <https://kul-optec.github.io/alpaqa/1.0.0a15/Doxygen/index.html>`_
- `C++ examples <https://kul-optec.github.io/alpaqa/1.0.0a15/Doxygen/examples.html>`_
- `Matlab documentation <https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/reference/matlab-api.html>`_

Installation
------------
@@ -39,7 +39,7 @@ The Python interface can be installed directly from PyPI:
python3 -m pip install --upgrade --pre alpaqa
For more information, please see the full
`installation instructions <https://kul-optec.github.io/alpaqa/1.0.0a14/Sphinx/install/installation.html>`_.
`installation instructions <https://kul-optec.github.io/alpaqa/1.0.0a15/Sphinx/install/installation.html>`_.

Publications
------------
4 changes: 2 additions & 2 deletions python/alpaqa-debug/pyproject.toml
Original file line number Diff line number Diff line change
@@ -6,8 +6,8 @@ license = { "file" = "../../LICENSE" }
authors = [{ "name" = "Pieter P", "email" = "pieter.p.dev@outlook.com" }]
keywords = []
classifiers = []
dependencies = ["alpaqa==1.0.0a15.dev0"]
version = "1.0.0a15.dev0"
dependencies = ["alpaqa==1.0.0a15"]
version = "1.0.0a15"
description = "Debug symbols for the alpaqa package."

[project.urls]
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.0a15.dev0"
__version__ = "1.0.0a15"

from .alpaqa import *
from .alpaqa import __c_version__
4 changes: 2 additions & 2 deletions scripts/dev/install-locally.sh
Original file line number Diff line number Diff line change
@@ -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.0a15.dev0" "alpaqa-debug==1.0.0a15.dev0"
"alpaqa==1.0.0a15" "alpaqa-debug==1.0.0a15"
pip install -f staging \
"alpaqa[test]==1.0.0a15.dev0" "alpaqa-debug==1.0.0a15.dev0"
"alpaqa[test]==1.0.0a15" "alpaqa-debug==1.0.0a15"
fi
pytest

0 comments on commit e4b51d2

Please sign in to comment.