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.
1 parent 1a2438d commit 847fdffCopy full SHA for 847fdff
tests/conda/py35-binder-dir/verify
@@ -3,7 +3,7 @@ import os
3
import sys
4
from subprocess import STDOUT, check_output
5
6
-assert sys.version_info[:2] == (3, 7), sys.version
+assert sys.version_info[:2] == (3, 10), sys.version
7
8
9
def sh(cmd, **kwargs):
tests/conda/py36-postBuild/verify.py
@@ -69,7 +69,7 @@ def test_kernel_env(kernel_conda):
69
def test_server_env(server_conda):
70
# this should be the default version
71
# it will need updating when the default changes
72
- assert server_conda["python"]["version"][:3] == "3.7"
+ assert server_conda["python"]["version"].split(".")[:2] == ["3", "10"]
73
74
75
def test_conda_install(kernel_conda, server_conda):
0 commit comments