From 83865edf331cae3a90f41b7f4f18ea556f30969f Mon Sep 17 00:00:00 2001 From: Fabian Pedregosa Date: Thu, 4 Oct 2018 10:09:56 -0700 Subject: [PATCH] new revision and zenodo file --- .zenodo.json | 18 ++++++++++++++++++ copt/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .zenodo.json diff --git a/.zenodo.json b/.zenodo.json new file mode 100644 index 00000000..b6c99c36 --- /dev/null +++ b/.zenodo.json @@ -0,0 +1,18 @@ +{ + "creators": [ + { + "name": "Fabian Pedregosa", + "affiliation": "Google", + "orcid": "0000-0003-4025-3953" + } + ], + "keywords": [ + "optimization", + "machine learning", + "Python", + ], + "description": "

copt is a library for mathematical optimization written in Python..

", + "access_right": "open", + "license": "BSD-3-Clause", + "upload_type": "software" +} diff --git a/copt/__init__.py b/copt/__init__.py index 5376f6dd..dc19eeeb 100755 --- a/copt/__init__.py +++ b/copt/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.5.0' +__version__ = '0.5.1' from .proxgrad import minimize_PGD, minimize_APGD from .splitting import minimize_TOS, minimize_PDHG