File tree 5 files changed +6
-8
lines changed
5 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 10
10
setup_requires = ["pytest-runner" , "setuptools_scm" ],
11
11
tests_require = ["pytest" , "pytest-cov" ],
12
12
install_requires = [
13
- "benchbuild>=6.5.0 " ,
13
+ "benchbuild>=6.5.1 " ,
14
14
"plumbum>=1.6.6" ,
15
15
"PyGithub>=1.47" ,
16
16
"PyDriller>=2.0" ,
Original file line number Diff line number Diff line change @@ -16,11 +16,10 @@ class FeatureSource(bb.source.FetchableSource): # type: ignore
16
16
17
17
LOCAL_KEY = "config_info"
18
18
19
- def __init__ (self , version : str ) -> None :
20
- super ().__init__ (local = self .LOCAL_KEY , remote = {version : "dummy_value" })
19
+ def __init__ (self ) -> None :
20
+ super ().__init__ (local = self .LOCAL_KEY , remote = {"fv_1" : "dummy_value" })
21
21
22
22
def version (self , target_dir : str , version : str ) -> pb .LocalPath :
23
- # TODO: do we need this? Maybe an optional path?
24
23
return pb .LocalPath ('.' )
25
24
26
25
def versions (self ) -> tp .List [Variant ]:
Original file line number Diff line number Diff line change 18
18
tests_require = ["pytest" , "pytest-cov" ],
19
19
install_requires = [
20
20
"argparse-utils>=1.2.0" ,
21
- "benchbuild>=6.5.0" ,
22
- "dill==0.3.4" , # Missing BB dep
21
+ "benchbuild>=6.5.1" ,
23
22
"click>=8.0.2" ,
24
23
"distro>=1.5.0" ,
25
24
"graphviz>=0.14.2" ,
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class Xz(VProject):
63
63
shallow = False
64
64
)
65
65
),
66
- FeatureSource (version = "1.0" ),
66
+ FeatureSource (),
67
67
# TODO: auto unzipper for BB?
68
68
HTTP (
69
69
local = "countries-land-1km.geo.json" ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class FeaturePerfCSCollection(VProject):
39
39
shallow = False ,
40
40
version_filter = project_filter_generator ("FeaturePerfCSCollection" )
41
41
),
42
- FeatureSource (version = "1.0" )
42
+ FeatureSource ()
43
43
]
44
44
45
45
WORKLOADS = {
You can’t perform that action at this time.
0 commit comments