Skip to content

Commit

Permalink
Version 1.0.0a20
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Dec 17, 2024
1 parent bb01968 commit 3e5d8ce
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 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.0a20.dev0"
PACKAGE_VERSION: "1.0.0a20"
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.0a20.dev0"
PACKAGE_VERSION: "1.0.0a20"
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
Expand Up @@ -5,7 +5,7 @@ project(alpaqa
HOMEPAGE_URL "https://github.com/kul-optec/alpaqa"
LANGUAGES CXX
)
set(PY_VERSION_SUFFIX "a20.dev0")
set(PY_VERSION_SUFFIX "a20")
include(CTest)
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/find")

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dynamic = ["version", "description"]

[project.optional-dependencies]
docs = ["breathe~=4.35.0", "sphinx>=7.2.2,<8", "sphinx-tabs~=3.4.4", "sphinxcontrib-matlabdomain~=0.20.2", "sphinxcontrib-moderncmakedomain~=3.27.0", "furo==2023.08.19", "matplotlib"]
debug = ["alpaqa-debug==1.0.0a20.dev0"]
debug = ["alpaqa-debug==1.0.0a20"]
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" = "[email protected]" }]
keywords = []
classifiers = []
dependencies = ["alpaqa==1.0.0a20.dev0"]
version = "1.0.0a20.dev0"
dependencies = ["alpaqa==1.0.0a20"]
version = "1.0.0a20"
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.0a20.dev0"
__version__ = "1.0.0a20"

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 @@ -60,8 +60,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.0a20.dev0" "alpaqa-debug==1.0.0a20.dev0"
"alpaqa==1.0.0a20" "alpaqa-debug==1.0.0a20"
pip install -f staging \
"alpaqa[test]==1.0.0a20.dev0" "alpaqa-debug==1.0.0a20.dev0"
"alpaqa[test]==1.0.0a20" "alpaqa-debug==1.0.0a20"
fi
pytest

0 comments on commit 3e5d8ce

Please sign in to comment.