Skip to content

Commit 8a34c1d

Browse files
committed
Default to 3.12 for master for now
1 parent 99fcefe commit 8a34c1d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

admin-tools/setup-master.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/bash
22
# Check out master branch and dependent development master branches
3+
PYTHON_VERSION=3.12
4+
35
bs=${BASH_SOURCE[0]}
46
if [[ $0 == $bs ]] ; then
57
echo "This script should be *sourced* rather than run directly through bash"
68
exit 1
79
fi
810

9-
PYTHON_VERSION=3.12
10-
1111
mydir=$(dirname $bs)
1212
trepan3k_owd=$(pwd)
1313
cd $mydir

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from setuptools import find_packages, setup
55

66
SYS_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 += "\nFor your Python, version %s, See trepan2" % sys.version[0:3]
1111
elif SYS_VERSION < (2, 4):

0 commit comments

Comments
 (0)