8000 Merge pull request #825 from holgern/release_0.7.1rc1 · scikit-optimize/scikit-optimize@d9062c2 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit d9062c2

Browse files
authored
Merge pull request #825 from holgern/release_0.7.1rc1
[MRG] Prepare Release 0.7.1
2 parents 89b4f90 + a12dadb commit d9062c2

File tree

8 files changed

+182
-6
lines changed

8 files changed

+182
-6
lines changed

.zenodo.json

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
{
2+
"title": "scikit-optimize/scikit-optimize",
3+
"description": "Scikit-Optimize, or skopt, is a simple and efficient library to minimize (very) expensive and noisy black-box functions. It implements several methods for sequential model-based optimization. skopt aims to be accessible and easy to use in many contexts.",
4+
"creators": [
5+
{
6+
"affiliation": "Wild Tree Tech",
7+
"name": "Head, Tim"
8+
},
9+
{
10+
"affiliation": "Google Brain",
11+
"name": "Kumar, Manoj"
12+
},
13+
{
14+
"name": "Nahrstaedt, Holger",
15+
"orcid": "0000-0002-4796-1082"
16+
},
17+
{
18+
"affiliation": "ULi\u00e8ge",
19+
"name": "Louppe, Gilles"
20+
},
21+
{
22+
"affiliation": "Saarland University",
23+
"name": "Shcherbatyi, Iaroslav"
24+
},
25+
{
26+
"name": "fcharras"
27+
},
28+
{
29+
"name": "Z\u00e9 Vin\u00edcius"
30+
},
31+
{
32+
"name": "cmmalone"
33+
},
34+
{
35+
"name": "Christopher Schr\u00f6der"
36+
},
37+
{
38+
"name": "nel215"
39+
},
40+
{
41+
"affiliation": "@yldio",
42+
"name": "Nuno Campos"
43+
},
44+
{
45+
"name": "Todd Young"
46+
},
47+
{
48+
"affiliation": "Politecnico di Milano",
49+
"name": "Stefano Cereda"
50+
},
51+
{
52+
"name": "Thomas Fan"
53+
},
54+
{
55+
"name": "rene-rex"
56+
},
57+
{
58+
"affiliation": "Columbia University",
59+
"name": "Kejia (KJ) Shi"
60+
},
61+
{
62+
"affiliation": "Biomedical Informatics Department, Emory School of Medicine",
63+
"name": "Justus Schwabedal"
64+
},
65+
{
66+
"name": "carlosdanielcsantos"
67+
},
68+
{
69+
"affiliation": "Hvass Laboratories",
70+
"name": "Hvass-Labs"
71+
},
72+
{
73+
"affiliation": "Technical University of Munich",
74+
"name": "Mikhail Pak"
75+
},
76+
{
77+
"name": "SoManyUsernamesTaken"
78+
},
79+
{
80+
"affiliation": "UC Berkeley",
81+
"name": "Fred Callaway"
82+
},
83+
{
84+
"name": "Lo\u00efc Est\u00e8ve"
85+
},
86+
{
87+
"affiliation": "ENS de Cachan - Paris Saclay University",
88+
"name": "Lilian Besson"
89+
},
90+
{
91+
"name": "Mehdi Cherti"
92+
},
93+
{
94+
"affiliation": "Paderborn University",
95+
"name": "Karlson Pfannschmidt"
96+
},
97+
{
98+
"affiliation": "Toptal",
99+
"name": "Fabian Linzberger"
100+
},
101+
{
102+
"affiliation": "@point8",
103+
"name": "Christophe Cauet"
104+
},
105+
{
106+
"affiliation": "10clouds",
107+
"name": "Anna Gut"
108+
},
109+
{
110+
"affiliation": "Columbia University Data Science Institute",
111+
"name": "Andreas Mueller"
112+
},
113+
{
114+
"affiliation": "DFKI",
115+
"name": "Alexander Fabisch"
116+
}
117+
],
118+
"keywords": [
119+
"bayesopt",
120+
"optimization",
121+
"scientific-computing",
122+
"python",
123+
"machine-learning",
124+
"hyperparameter",
125+
"bayesian-optimization"
126+
],
127+
"license": "bsd-license",
128+
"upload_type": "software"
129+
}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
# Release history
2+
## Version 0.7.1
3+
4+
### New features
5+
6+
* Sphinx documentation
7+
* notebooks are replaced by sphinx-gallery
8+
* New StringEncoder, can be used in Categoricals
9+
* Remove string conversion in Identity
10+
* dtype can be set in Integer and Real
11+
12+
### Bug fixes
13+
14+
* Fix categorical space (issue #821)
15+
* int can be set as dtype to fix issue #790
16+
17+
### Maintenance
18+
19+
* Old pdoc scripts are removed and replaced by sphinx
20+
221
## Version 0.7
322

423
### New features

README.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
|Logo|
33

4-
|Travis Status| |CircleCI Status| |binder| |gitter| |Zenodo DOI|
4+
|pypi| |conda| |Travis Status| |CircleCI Status| |binder| |gitter| |Zenodo DOI|
55

66
Scikit-Optimize
77
===============
@@ -38,7 +38,7 @@ Important links
3838
Install
3939
-------
4040

41-
The latest released version of scikit-optimize is v0.7, which you can install
41+
The latest released version of scikit-optimize is v0.7.1, which you can install
4242
with:
4343
::
4444

@@ -183,6 +183,10 @@ If your employer allows you to work on scikit-optimize during the day and would
183183
recognition, feel free to add them to the "Made possible by" list.
184184

185185

186+
.. |pypi| image:: https://img.shields.io/pypi/v/scikit-optimize.svg
187+
:target: https://pypi.python.org/pypi/scikit-optimize
188+
.. |conda| image:: https://anaconda.org/conda-forge/scikit-optimize/badges/version.svg
189+
:target: https://anaconda.org/conda-forge/scikit-optimize
186190
.. |Travis Status| image:: https://travis-ci.org/scikit-optimize/scikit-optimize.svg?branch=master
187191
:target: https://travis-ci.org/scikit-optimize/scikit-optimize
188192
.. |CircleCI Status| image:: https://circleci.com/gh/scikit-optimize/scikit-optimize/tree/master.svg?style=shield&circle-token=:circle-token

build_tools/circle/deploy.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ MSG="Pushing the docs for revision for branch: $CIRCLE_BRANCH, commit $CIRCLE_SH
1313
echo "Copying built files"
1414
git clone -b master "git@github.com:scikit-optimize/scikit-optimize.github.io" deploy
1515
cd deploy
16-
git rm -r notebooks/*
17-
git rm -r rtd/*
18-
git rm -r beta/*
16+
git rm -r space
17+
git rm -r optimizer
18+
git rm -r learning
1919
cd ..
2020
for entry in ${HOME}/doc/skopt/*
2121
do

doc/templates/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ <h4 class="sk-landing-call-header">News</h4>
108108
<li><strong>On-going development:</strong>
109109
<a href="whats_new.html"><strong>What's new</strong> (Changelog)</a>
110110
</li>
111+
<li><strong>Feb 2020.</strong> scikit-optimize 0.7.1 (<a href="whats_new/v0.7.1.html">Changelog</a>).
111112
<li><strong>Jan 2020.</strong> scikit-optimize 0.7 (<a href="whats_new/v0.7.html">Changelog</a>).
112113
<li><strong>April 2018.</strong> scikit-optimize 0.6 (<a href="whats_new/v0.6.html">Changelog</a>).
113114
<li><strong>Mar 2018.</strong> scikit-optimize 0.5 (<a href="whats_new/v0.5.html">Changelog</a>).

doc/whats_new.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Release notes for all scikit-optimize releases are linked in this this page.
88
.. toctree::
99
:maxdepth: 1
1010

11+
Version 0.7.1 <whats_new/v0.7.1.rst>
1112
Version 0.7 <whats_new/v0.7.rst>
1213
Version 0.6 <whats_new/v0.6.rst>
1314
Version 0.5 <whats_new/v0.5.rst>

doc/whats_new/v0.7.1.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Version 0.7.1
2+
=============
3+
4+
New features
5+
------------
6+
7+
* Sphinx documentation
8+
* notebooks are replaced by sphinx-gallery
9+
* New StringEncoder, can be used in Categoricals
10+
* Remove string conversion in Identity
11+
* dtype can be set in Integer and Real
12+
13+
Bug fixes
14+
---------
15+
16+
* Fix categorical space (issue #821)
17+
* int can be set as dtype to fix issue #790
18+
19+
Maintenance
20+
-----------
21+
22+
* Old pdoc scripts are removed and replaced by sphinx

skopt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
3030
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
3131
#
32-
__version__ = "0.7"
32+
__version__ = "0.7.1"
3333

3434
if __SKOPT_SETUP__:
3535
import sys

0 commit comments

Comments
 (0)
0