Skip to content

Commit e0dc608

Browse files
authored
Merge branch 'develop' into feature/upload-flow
2 parents 28c57ff + e594abc commit e0dc608

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

doc/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ programmatically after loading the package:
3333
>>> import openml
3434
3535
>>> apikey = 'Your API key'
36-
>>> openml.apikey = apikey
36+
>>> openml.config.apikey = apikey
3737
3838
The second option is to create a config file:
3939

openml/testing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def setUp(self):
4545
self.production_server = "https://www.openml.org/api/v1/xml"
4646
self.test_server = "https://test.openml.org/api/v1/xml"
4747
openml.config.server = self.test_server
48+
4849
openml.config.set_cache_directory(self.workdir, self.workdir)
4950

5051
def tearDown(self):

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ liac-arff>=2.1.1dev
55
xmltodict
66
nose
77
requests
8-
scikit-learn
8+
scikit-learn
9+
nbformat

0 commit comments

Comments
 (0)