Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [
Expand All @@ -22,21 +22,21 @@ jobs:
'3.11',
'3.12',
'3.13',
'3.14',
]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install APT packages
run: |
sudo apt update
sudo apt install \
gfortran \
libatlas-base-dev \
liblapack-dev \
libgmp-dev \
libmpfr-dev \
libglpk-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies from PyPI
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Polytope package update history


## version 0.2.6 - under development

- REL: require `cvxopt == 1.3.3` in `requirements/extras.txt`


## version 0.2.5 - 6 March 2024

- support `matplotlib >= 3.6.0`
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ name = "polytope"
description = "Polytope Toolbox"
authors = [{name = "Caltech Control and Dynamical Systems", email = "polytope@tulip-control.org"}]
readme = "README.rst"
license = {text = "BSD-3-Clause"}
license = "BSD-3-Clause"
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
Expand Down
2 changes: 1 addition & 1 deletion requirements/extras.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cvxopt==1.3.2
cvxopt==1.3.3
Loading