Skip to content

Commit 65f58f2

Browse files
committed
Fix: RTD build
1 parent 23488c2 commit 65f58f2

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

rtd_requirements.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ swig
33
mock
44
sphinx-rtd-theme==1.3.0
55
sphinx==7.1.2
6-
sphinxcontrib-applehelp==1.0.4
7-
sphinxcontrib-bibtex==2.6.3
8-
sphinxcontrib-devhelp==1.0.2
9-
sphinxcontrib-htmlhelp==2.0.1
10-
sphinxcontrib-jquery==4.1
11-
sphinxcontrib-jsmath==1.0.1
12-
sphinxcontrib-qthelp==1.0.3
13-
sphinxcontrib-serializinghtml==1.1.5
14-
sphinx-autobuild==2021.3.14
6+
sphinxcontrib-applehelp
7+
sphinxcontrib-bibtex
8+
sphinxcontrib-devhelp
9+
sphinxcontrib-htmlhelp
10+
sphinxcontrib-jquery
11+
sphinxcontrib-jsmath
12+
sphinxcontrib-qthelp
13+
sphinxcontrib-serializinghtml
14+
sphinx-autobuild

selector/log_setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ class TournamentEncoder(json.JSONEncoder):
9292
"""
9393
Encodes selector.pool.Tournament for logging.
9494
"""
95-
def __init__(self):
96-
super().__init__()
95+
def __init__(self, **kwargs):
96+
super().__init__(**kwargs)
9797

9898
def default(self, o):
9999
"""
@@ -134,8 +134,8 @@ class ConfEncoder(json.JSONEncoder):
134134
"""
135135
Encodes selector.pool.Configuration object for logging.
136136
"""
137-
def __init__(self):
138-
super().__init__()
137+
def __init__(self, **kwargs):
138+
super().__init__(**kwargs)
139139

140140
def default(self, obj):
141141
if isinstance(obj, np.integer):

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
# This call to setup() does all the work
1616
setup(
1717
name="selector-ac",
18-
version="0.1.0.4",
18+
version="0.1.0.6",
1919
description="Selector: Ensemble-Based Automated Algorithm Configuration",
2020
long_description=README,
2121
long_description_content_type="text/markdown",
2222
url="https://github.com/DOTBielefeld/selector",
2323
author="Dimitri Weiß",
2424
author_email="[email protected]",
25-
packages=find_packages(exclude=["*wrapper*", "test"]),
25+
packages=find_packages(exclude=["*wrapper*", "*test"]),
2626
license="MIT License",
2727
python_requires=">=3.8",
2828
classifiers=[

0 commit comments

Comments
 (0)