numerapi 2.20.5__tar.gz → 2.20.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: numerapi
3
- Version: 2.20.5
3
+ Version: 2.20.6
4
4
  Summary: Automatically download and upload data for the Numerai machine learning competition
5
5
  Home-page: https://github.com/uuazed/numerapi
6
6
  Maintainer: uuazed
@@ -103,13 +103,11 @@ def submission_filenames(round_num, tournament, model_id):
103
103
 
104
104
 
105
105
  @cli.command()
106
- @click.option('--tournament', default=8,
107
- help='The ID of the tournament, defaults to 8')
108
106
  @click.option('--hours', default=12,
109
107
  help='timeframe to consider, defaults to 12')
110
- def check_new_round(hours=12, tournament=8):
108
+ def check_new_round(hours=12):
111
109
  """Check if a new round has started within the last `hours`."""
112
- click.echo(int(napi.check_new_round(hours=hours, tournament=tournament)))
110
+ click.echo(int(napi.check_new_round(hours=hours)))
113
111
 
114
112
 
115
113
  @cli.command()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: numerapi
3
- Version: 2.20.5
3
+ Version: 2.20.6
4
4
  Summary: Automatically download and upload data for the Numerai machine learning competition
5
5
  Home-page: https://github.com/uuazed/numerapi
6
6
  Maintainer: uuazed
@@ -6,7 +6,7 @@ def load(path):
6
6
  return open(path, 'r').read()
7
7
 
8
8
 
9
- numerapi_version = '2.20.5'
9
+ numerapi_version = '2.20.6'
10
10
 
11
11
 
12
12
  classifiers = [
File without changes
File without changes
File without changes
File without changes
File without changes