Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos.buildout
Commits
2b6995c6
Commit
2b6995c6
authored
Dec 02, 2021
by
Godefroid Chapelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: python310 condition missing
Solution: implement and document it
parent
cf6faa9d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
doc/topics/variables-extending-and-substitutions.rst
doc/topics/variables-extending-and-substitutions.rst
+1
-0
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+1
-1
src/zc/buildout/tests/configparser.test
src/zc/buildout/tests/configparser.test
+1
-1
No files found.
doc/topics/variables-extending-and-substitutions.rst
View file @
2b6995c6
...
...
@@ -202,6 +202,7 @@ python36 True if running Python 3.6
python37 True if running Python 3.7
python38 True if running Python 3.8
python39 True if running Python 3.9
python310 True if running Python 3.10
sys_version ``sys.version.lower()``
pypy True if running PyPy
jython True if running Jython
...
...
src/zc/buildout/buildout.py
View file @
2b6995c6
...
...
@@ -1764,7 +1764,7 @@ def _default_globals():
# minor python major_python_versions as python24, python25 ... python39
minor_python_versions
=
(
'24'
,
'25'
,
'26'
,
'27'
,
'30'
,
'31'
,
'32'
,
'33'
,
'34'
,
'35'
,
'36'
,
'37'
,
'38'
,
'39'
)
'30'
,
'31'
,
'32'
,
'33'
,
'34'
,
'35'
,
'36'
,
'37'
,
'38'
,
'39'
,
'310'
)
for
v
in
minor_python_versions
:
globals_defs
[
'python'
+
v
]
=
''
.
join
(
major_python_versions
[:
2
])
==
v
...
...
src/zc/buildout/tests/configparser.test
View file @
2b6995c6
...
...
@@ -291,7 +291,7 @@ called by buildout::
# major and minor python versions, yes even python 3.5 and 3.6 are there , prospectively
# comment: this expression "is true" and not that long expression cannot span several lines
[
s2
:
any
([
python2
,
python3
,
python24
,
python25
,
python26
,
python27
,
python30
,
python31
,
python32
,
python33
,
python34
,
python35
,
python36
,
python37
,
python38
,
python39
])
]
[
s2
:
any
([
python2
,
python3
,
python24
,
python25
,
python26
,
python27
,
python30
,
python31
,
python32
,
python33
,
python34
,
python35
,
python36
,
python37
,
python38
,
python39
,
python310
])
]
b
=
1
# common python interpreter types
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment