mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-21 01:11:21 +08:00
11 lines
178 B
Python
11 lines
178 B
Python
"""This calls the setup routine for Python 2 or 3 as required."""
|
|
|
|
import sys
|
|
|
|
if sys.version_info[0] >= 3:
|
|
from setup3 import main
|
|
else:
|
|
from setup2 import main
|
|
|
|
main()
|