File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#! /bin/bash
22# Check out master branch and dependent development master branches
3+ PYTHON_VERSION=3.12
4+
35bs=${BASH_SOURCE[0]}
46if [[ $0 == $bs ]] ; then
57 echo " This script should be *sourced* rather than run directly through bash"
68 exit 1
79fi
810
9- PYTHON_VERSION=3.12
10-
1111mydir=$( dirname $bs )
1212trepan3k_owd=$( pwd)
1313cd $mydir
Original file line number Diff line number Diff line change 44from setuptools import find_packages , setup
55
66SYS_VERSION = sys .version_info [0 :2 ]
7- if not ((3 , 1 ) <= SYS_VERSION < (3 , 13 )):
8- mess = "Python Versions 3.1 to 3.12 are supported only in this package."
7+ if not ((3 , 1 ) <= SYS_VERSION < (3 , 14 )):
8+ mess = "Python Versions 3.0 to 3.13 are supported only in this package."
99 if (2 , 4 ) <= SYS_VERSION <= (2 , 7 ):
1010 mess += "\n For your Python, version %s, See trepan2" % sys .version [0 :3 ]
1111 elif SYS_VERSION < (2 , 4 ):
You can’t perform that action at this time.
0 commit comments