Skip to content
Merged

3.2.8 #144

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
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[bumpversion]
current_version = 3.2.7
current_version = 3.2.8

[bumpversion:file:legacy_setup.py]

[bumpversion:file:pyproject.toml]

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ scs-python

[![Build Status](https://github.com/bodono/scs-python/actions/workflows/build.yml/badge.svg)](https://github.com/bodono/scs-python/actions/workflows/build.yml)
[![Documentation](https://img.shields.io/badge/docs-online-brightgreen?logo=read-the-docs&style=flat)](https://www.cvxgrp.org/scs/)
[![PyPI package](https://img.shields.io/pypi/dm/scs?label=PyPI%20downloads)](https://pypi.org/project/scs/)

[![PyPI Downloads/Month](https://static.pepy.tech/personalized-badge/scs?period=month&units=abbreviation&left_color=grey&right_color=brightgreen&left_text=downloads/month)](https://pepy.tech/project/scs)

Python interface for [SCS](https://github.com/cvxgrp/scs) 3.0.0 and higher.
The full documentation is available [here](https://www.cvxgrp.org/scs/).
2 changes: 1 addition & 1 deletion legacy_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def install_scs(**kwargs):

setup(
name="scs",
version="3.2.7",
version="3.2.8",
author="Brendan O'Donoghue",
author_email="[email protected]",
url="http://github.com/cvxgrp/scs",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = [

[project]
name = 'scs'
version = "3.2.7"
version = "3.2.8"
description = 'Splitting conic solver'
readme = 'README.md'
requires-python = '>=3.9'
Expand Down
2 changes: 1 addition & 1 deletion scs_source
Submodule scs_source updated 49 files
+1 −2 .bumpversion.cfg
+36 −0 .github/workflows/build_spectral.yml
+1 −1 .github/workflows/cmake_cudss.yml
+1 −1 .github/workflows/gpu.yml
+1 −0 .gitignore
+1 −1 CITATION.cff
+60 −16 CMakeLists.txt
+33 −1 Makefile
+1 −1 README.md
+3 −7 cmake/scs_types.h.in
+1 −1 docs/src/Doxyfile
+1 −1 docs/src/citing/index.rst
+1 −1 docs/src/conf.py
+1 −1 docs/src/install/c.rst
+43 −0 include/cones.h
+1 −1 include/glbopts.h
+25 −0 include/scs.h
+2 −4 include/scs_types.h
+45 −0 include/util_spectral_cones.h
+3 −3 linsys/cpu/direct/private.c
+2 −1 linsys/cpu/direct/private.h
+1 −1 linsys/csparse.c
+92 −88 linsys/cudss/direct/private.c
+34 −36 linsys/cudss/direct/private.h
+1 −1 linsys/external/qdldl/qdldl_types.h
+14 −21 linsys/gpu/indirect/private.c
+10 −1 scs.mk
+8 −12 src/aa.c
+554 −37 src/cones.c
+15 −1 src/rw.c
+4 −0 src/scs.c
+660 −0 src/spectral_cones/logdeterminant/log_cone_IPM.c
+279 −0 src/spectral_cones/logdeterminant/log_cone_Newton.c
+205 −0 src/spectral_cones/logdeterminant/log_cone_wrapper.c
+143 −0 src/spectral_cones/logdeterminant/logdet_cone.c
+221 −0 src/spectral_cones/nuclear/ell1_cone.c
+99 −0 src/spectral_cones/nuclear/nuclear_cone.c
+196 −0 src/spectral_cones/sum-largest/sum_largest_cone.c
+140 −0 src/spectral_cones/sum-largest/sum_largest_eval_cone.c
+52 −0 src/spectral_cones/util_spectral_cones.c
+83 −0 test/problems/complex_PSD.h
+4 −4 test/rng.h
+25 −0 test/run_tests.c
+141 −0 test/spectral_cones_problems/exp_design.h
+275 −0 test/spectral_cones_problems/graph_partitioning.h
+253 −0 test/spectral_cones_problems/robust_pca.h
+222 −0 test/spectral_cones_problems/several_logdet_cones.h
+285 −0 test/spectral_cones_problems/several_nuc_cone.h
+420 −0 test/spectral_cones_problems/several_sum_largest.h
Loading