Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Commits
5431294a
Commit
5431294a
authored
1 month ago
by
Simon Bjurek
Browse files
Options
Downloads
Patches
Plain Diff
Fixes to make pipeline pass for python 3.13
parent
13720232
No related branches found
Branches containing commit
No related tags found
1 merge request
!465
Fixes to make pipeline pass for python 3.13
Pipeline
#155758
passed
1 month ago
Stage: test
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+12
-0
12 additions, 0 deletions
.gitlab-ci.yml
b_asic/save_load_structure.py
+20
-10
20 additions, 10 deletions
b_asic/save_load_structure.py
with
32 additions
and
10 deletions
.gitlab-ci.yml
+
12
−
0
View file @
5431294a
...
...
@@ -71,6 +71,18 @@ run-test-3.12-pyside6:
image
:
python:3.12
extends
:
"
.run-test"
run-test-3.13-pyqt6
:
variables
:
QT_API
:
pyqt6
image
:
python:3.13
extends
:
"
.run-test"
run-test-3.13-pyside6
:
variables
:
QT_API
:
pyside6
image
:
python:3.13
extends
:
"
.run-test"
run-vhdl-tests
:
variables
:
QT_API
:
pyqt6
...
...
This diff is collapsed.
Click to expand it.
b_asic/save_load_structure.py
+
20
−
10
View file @
5431294a
...
...
@@ -150,18 +150,28 @@ def python_to_sfg(path: str) -> Tuple[SFG, Dict[str, Tuple[int, int]]]:
path : str
Path to file to read and deserialize.
"""
local_vars
=
{}
with
open
(
path
)
as
file
:
code
=
compile
(
file
.
read
(),
path
,
"
exec
"
)
exec
(
code
,
globals
(),
locals
())
return
(
(
locals
()[
"
prop
"
][
"
name
"
]
if
"
prop
"
in
locals
()
else
[
v
for
k
,
v
in
locals
().
items
()
if
isinstance
(
v
,
SFG
)][
0
]
),
locals
()[
"
positions
"
]
if
"
positions
"
in
locals
()
else
{},
)
exec
(
code
,
globals
(),
local_vars
)
# access variables from local_vars
sfg_object
=
None
if
"
prop
"
in
local_vars
and
"
name
"
in
local_vars
[
"
prop
"
]:
sfg_object
=
local_vars
[
"
prop
"
][
"
name
"
]
else
:
for
v
in
local_vars
.
values
():
if
isinstance
(
v
,
SFG
):
sfg_object
=
v
break
positions
=
local_vars
.
get
(
"
positions
"
,
{})
if
sfg_object
is
None
:
raise
ValueError
(
"
No SFG object found in the provided file.
"
)
return
sfg_object
,
positions
def
schedule_to_python
(
schedule
:
Schedule
)
->
str
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment