File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed
Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 33mock
44sphinx-rtd-theme==1.3.0
55sphinx==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
Original file line number Diff line number Diff 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 ):
Original file line number Diff line number Diff line change 1515# This call to setup() does all the work
1616setup (
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ß" ,
242425- packages = find_packages (exclude = ["*wrapper*" , "test" ]),
25+ packages = find_packages (exclude = ["*wrapper*" , "* test" ]),
2626 license = "MIT License" ,
2727 python_requires = ">=3.8" ,
2828 classifiers = [
You can’t perform that action at this time.
0 commit comments