Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaudi
Gaudi
Merge requests
!875
Add Python 3 to CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add Python 3 to CI
rmatev/Gaudi:add-python3-ci
into
master
Overview
14
Commits
45
Pipelines
6
Changes
113
Merged
Rosen Matev
requested to merge
rmatev/Gaudi:add-python3-ci
into
master
6 years ago
Overview
8
Commits
45
Pipelines
6
Changes
113
Expand
Add a build and a test job using LCG 96python3
Build on top of
!545 (closed)
by
@apearce
, rebasing and adapting where needed
All tests passing with both python2 and python3!
Supersedes
!545 (closed)
and
!864 (closed)
Closes
#56 (closed)
Edited
5 years ago
by
Marco Clemencic
1
0
Merge request reports
Compare
master
version 5
c0eaaf01
5 years ago
version 4
0c254a7d
5 years ago
version 3
6546d072
6 years ago
version 2
df87b2d4
6 years ago
version 1
015b3e55
6 years ago
master (base)
and
latest version
latest version
a5239d06
45 commits,
5 years ago
version 5
c0eaaf01
45 commits,
5 years ago
version 4
0c254a7d
47 commits,
5 years ago
version 3
6546d072
17 commits,
6 years ago
version 2
df87b2d4
19 commits,
6 years ago
version 1
015b3e55
18 commits,
6 years ago
113 files
+
988
−
659
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
113
Search (e.g. *.vue) (Ctrl+P)
Gaudi/python/Gaudi/CommonGaudiConfigurables.py
+
7
−
1
Options
@@ -59,4 +59,10 @@ for new in aliases:
_gbl
.
update
(
aliases
)
__all__
.
extend
(
aliases
)
# remove temporaries
del
_gbl
,
new
del
_gbl
# The `new` var is only scoped in its `for` loop in Python 3, so we only need
# to 'worry' about cleanup in Python 2
try
:
del
new
except
NameError
:
pass
Loading