Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pystencils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
pycodegen
pystencils
Merge requests
!398
Update SymPy Dependency + Pipeline Cleanup
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update SymPy Dependency + Pipeline Cleanup
da15siwa/pystencils:fhennig/sympy-and-ci
into
master
Overview
0
Commits
9
Pipelines
9
Changes
4
Merged
Frederik Hennig
requested to merge
da15siwa/pystencils:fhennig/sympy-and-ci
into
master
11 months ago
Overview
0
Commits
9
Pipelines
9
Changes
4
Expand
This MR
raises the upper limit for SymPy to
1.12.1
introduces a weekly test run against the latest sympy pre-release
cleans up the CI configuration a bit
Closes
#91 (closed)
Edited
11 months ago
by
Frederik Hennig
0
0
Merge request reports
Compare
master
version 3
471affe8
11 months ago
version 2
dabdca0b
11 months ago
version 1
00e8226c
11 months ago
master (base)
and
latest version
latest version
4adfd8a1
9 commits,
11 months ago
version 3
471affe8
8 commits,
11 months ago
version 2
dabdca0b
7 commits,
11 months ago
version 1
00e8226c
6 commits,
11 months ago
4 files
+
62
−
31
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/pystencils/boundaries/boundaryhandling.py
+
3
−
3
Options
@@ -35,11 +35,11 @@ class FlagInterface:
@@ -35,11 +35,11 @@ class FlagInterface:
>>>
dh
=
create_data_handling
((
4
,
5
))
>>>
dh
=
create_data_handling
((
4
,
5
))
>>>
fi
=
FlagInterface
(
dh
,
'
flag_field
'
,
np
.
uint8
)
>>>
fi
=
FlagInterface
(
dh
,
'
flag_field
'
,
np
.
uint8
)
>>>
assert
dh
.
has_data
(
'
flag_field
'
)
>>>
assert
dh
.
has_data
(
'
flag_field
'
)
>>>
fi
.
reserve_next_flag
()
>>>
int
(
fi
.
reserve_next_flag
()
)
2
2
>>>
fi
.
reserve_flag
(
4
)
>>>
int
(
fi
.
reserve_flag
(
4
)
)
4
4
>>>
fi
.
reserve_next_flag
()
>>>
int
(
fi
.
reserve_next_flag
()
)
8
8
"""
"""
Loading