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 ad5ecaa commit 5058ecaCopy full SHA for 5058eca
tests/conda/py-r-postbuild-file/verify.py
@@ -4,8 +4,8 @@
4
5
6
def test_sys_version():
7
- """The default python version should be 3.7"""
8
- assert sys.version_info[:2] == (3, 7)
+ """The default python version should be 3.10"""
+ assert sys.version_info[:2] == (3, 10)
9
10
11
def test_there():
tests/conda/py2/verify
@@ -1,7 +1,7 @@
1
#!/usr/bin/env python
2
import sys
3
-assert sys.version_info[:2] == (3, 7), sys.version
+assert sys.version_info[:2] == (3, 10), sys.version
# verify that we have Python 2 and Python 3 kernelspecs
from jupyter_client.kernelspec import KernelSpecManager
0 commit comments