We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc3f0f7 + 97c13e1 commit 3a3455dCopy full SHA for 3a3455d
.travis.yml
@@ -2,7 +2,6 @@ sudo: false
2
language: python
3
python:
4
- 2.7
5
- - 3.3
6
- 3.4
7
- 3.5
8
- 3.6
kernel_gateway/gatewayapp.py
@@ -457,7 +457,9 @@ def init_webapp(self):
457
kg_personality=self.personality,
458
# Also set the allow_origin setting used by notebook so that the
459
# check_origin method used everywhere respects the value
460
- allow_origin=self.allow_origin
+ allow_origin=self.allow_origin,
461
+ # Always allow remote access (has been limited to localhost >= notebook 5.6)
462
+ allow_remote_access=True
463
)
464
465
# promote the current personality's "config" tagged traitlet values to webapp settings
0 commit comments