Skip to content

Commit 5993a6c

Browse files
committed
update docs to specify python 3.6 as minimum version
1 parent 1b7047d commit 5993a6c

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

documentation/environment.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Runtime Environment
44
The pyDevSup module initializes the interpreter during the registration
55
phase of IOC startup with the *pySetupReg* registrar function. ::
66

7-
#!../../bin/linux-x86_64/softIocPy2.7
7+
#!../../bin/linux-x86_64/softIocPy3.6
88
# Interpreter not started
99
dbLoadDatabase("../../dbd/softIocPy.dbd",0,0)
1010
softIocPy_registerRecordDeviceDriver(pdbbase)
@@ -51,7 +51,7 @@ file. ::
5151

5252
The default or preferred Python version can be specificed in *configure/CONFIG_SITE* ::
5353

54-
PY_VER ?= 2.7
54+
PY_VER ?= 3.6
5555

5656
The following should be added to individual EPICS Makefiles. ::
5757

@@ -64,8 +64,8 @@ The following should be added to individual EPICS Makefiles. ::
6464

6565
This will add or amend several make variables. The ``USR_*FLAGS`` variables
6666
may be extended with appropriate flags for building python modules. The ``PY_VER``
67-
variable is defined with the Python version number found in install directories (eg "2.7").
68-
The ``PY_LD_VER`` variable is defined with the python library version number (eg "3.2mu"),
67+
variable is defined with the Python version number found in install directories (eg "3.6").
68+
The ``PY_LD_VER`` variable is defined with the python library version number (eg "3.6mu"),
6969
which may be the same as ``PY_VER``.
7070

7171
Include pyDevSup in your IOC
@@ -113,11 +113,11 @@ Installing for several Python versions
113113
The recipe for building and installing the pyDevSup module
114114
for several python version side by side is ::
115115

116-
make PY_VER=2.6
116+
make PY_VER=3.6
117117
make clean
118-
make PY_VER=2.7
118+
make PY_VER=3.10
119119
make clean
120-
make PY_VER=3.2
120+
make PY_VER=3.14
121121
make clean
122122

123123
The ``PYTHON`` make variable can be specified if the interpreter executable

documentation/gettingstarted.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The :py:meth:`process <DeviceSupport.process>` method increments the *VAL* field
2424

2525
Start this IOC with. ::
2626

27-
$ ./bin/linux-x86_64/softIocPy2.7 -d cntrec.db
27+
$ ./bin/linux-x86_64/softIocPy3.6 -d cntrec.db
2828
Starting iocInit
2929
...
3030
iocRun: All initialization complete

documentation/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pydevsup documentation
88

99
*pyDevSup* is a means of writing EPICS device support code in Python.
1010

11-
It currently supports EPICS >=3.14.12 and python versions: 2.7, and >=3.2.
11+
It currently supports EPICS >=3.14.12 and python versions >=3.6
1212
The numpy package is also required.
1313

1414
The source can be found at http://github.com/mdavidsaver/pyDevSup

iocBoot/iocapplmon/st.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!../../bin/linux-x86/softIocPy2.7
1+
#!../../bin/linux-x86/softIocPy3.6
22

33
< envPaths
44

iocBoot/iocarchivemon/st.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!../../bin/linux-x86/softIocPy2.7
1+
#!../../bin/linux-x86/softIocPy3.6
22

33
< envPaths
44

iocBoot/iocarchivemon/st.cmd.main

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!../../bin/linux-x86_64/softIocPy2.7
1+
#!../../bin/linux-x86_64/softIocPy3.6
22

33
< envPaths
44

0 commit comments

Comments
 (0)