-
-
Notifications
You must be signed in to change notification settings - Fork 164
Add requirements-reference.txt #871
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
PranjalManhgaye
wants to merge
7
commits into
precice:develop
Choose a base branch
from
PranjalManhgaye:fix-610-python-dependency-versions-clean
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6e583b7
Add tutorial Python dependency reference manifest for #610
PranjalManhgaye 626dd48
Update 610.md
PranjalManhgaye f08a2cb
Fix markdownlint MD012 in README.md
PranjalManhgaye bd584b7
Merge remote-tracking branch 'upstream/develop' into fix-610-python-d…
PranjalManhgaye 6b5e773
Address #871 review: per-participant requirements-reference files
PranjalManhgaye 2a89e82
Merge branch 'develop' into fix-610-python-dependency-versions-clean
MakisH 1b5b921
Merge branch 'develop' into fix-610-python-dependency-versions-clean
MakisH File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| name: Check requirements-reference | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| - develop | ||
| paths: | ||
| - '**/requirements.txt' | ||
| - '**/requirements-reference.txt' | ||
| - tools/releasing/report_tutorial_requirements.py | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| - develop | ||
| paths: | ||
| - '**/requirements.txt' | ||
| - '**/requirements-reference.txt' | ||
| - tools/releasing/report_tutorial_requirements.py | ||
| jobs: | ||
| check: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout the repository | ||
| uses: actions/checkout@v7 | ||
| - name: Setup python | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: '3.10' | ||
| - name: Install packaging | ||
| run: pip install packaging | ||
| - name: Check requirements-reference.txt files | ||
| run: python3 tools/releasing/report_tutorial_requirements.py --check | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| - Add loose version constraints to tutorial `requirements.txt` files and sibling `requirements-reference.txt` pins generated from PyPI via `tools/releasing/report_tutorial_requirements.py`, with a CI check that keeps them up to date ([#871](https://github.com/precice/tutorials/pull/871)). |
10 changes: 10 additions & 0 deletions
10
channel-transport-particles/fluid-nutils/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: channel-transport-particles/fluid-nutils/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| setuptools==83.0.0 | ||
| nutils==7.3 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| setuptools # required by nutils | ||
| setuptools>=69.0.0 # required by nutils | ||
|
MakisH marked this conversation as resolved.
|
||
| nutils~=7.3 | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 | ||
| setuptools | ||
13 changes: 13 additions & 0 deletions
13
channel-transport-reaction/chemical-fenics/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: channel-transport-reaction/chemical-fenics/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| numpy==1.26.4 | ||
| fenicsprecice==2.3.0 | ||
| fenics-dijitso==2019.1.0 | ||
| # fenics-dolfin~=2019.0 # non-PyPI (system/PPA or no matching PyPI version) | ||
| fenics-ffc==2019.1.0.post0 | ||
| fenics-fiat==2019.1.0 | ||
| fenics-ufl-legacy==2022.3.0 |
13 changes: 13 additions & 0 deletions
13
channel-transport-reaction/fluid-fenics/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: channel-transport-reaction/fluid-fenics/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| numpy==1.26.4 | ||
| fenicsprecice==2.3.0 | ||
| fenics-dijitso==2019.1.0 | ||
| # fenics-dolfin~=2019.0 # non-PyPI (system/PPA or no matching PyPI version) | ||
| fenics-ffc==2019.1.0.post0 | ||
| fenics-fiat==2019.1.0 | ||
| fenics-ufl-legacy==2022.3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: channel-transport/fluid-nutils/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| setuptools==83.0.0 | ||
| nutils==7.3 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| setuptools # required by nutils | ||
| setuptools>=69.0.0 # required by nutils | ||
| nutils~=7.3 | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 | ||
| setuptools |
10 changes: 10 additions & 0 deletions
10
channel-transport/transport-nutils/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: channel-transport/transport-nutils/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| setuptools==83.0.0 | ||
| nutils==7.3 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| setuptools # required by nutils | ||
| setuptools>=69.0.0 # required by nutils | ||
| nutils~=7.3 | ||
| numpy >1, <2 | ||
| pyprecice >=3.2 # Remeshing support is available since preCICE version 3.2 | ||
| setuptools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: elastic-tube-1d/fluid-python/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| matplotlib==3.11.0 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| matplotlib | ||
| matplotlib>=3,<4 | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: elastic-tube-1d/solid-python/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: elastic-tube-3d/solid-fenics/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| fenicsprecice==2.3.0 | ||
| numpy==1.26.4 | ||
| fenics-dijitso==2019.1.0 | ||
| # fenics-dolfin~=2019.0 # non-PyPI (system/PPA or no matching PyPI version) | ||
| fenics-ffc==2019.1.0.post0 | ||
| fenics-fiat==2019.1.0 | ||
| fenics-ufl-legacy==2022.3.0 |
8 changes: 8 additions & 0 deletions
8
flow-around-controlled-moving-cylinder/controller-fmi/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: flow-around-controlled-moving-cylinder/controller-fmi/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| fmiprecice==0.2.1 |
2 changes: 1 addition & 1 deletion
2
flow-around-controlled-moving-cylinder/controller-fmi/requirements.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| pyprecice~=3.0 | ||
| fmiprecice | ||
| fmiprecice~=0.2 |
8 changes: 8 additions & 0 deletions
8
flow-around-controlled-moving-cylinder/solid-python/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: flow-around-controlled-moving-cylinder/solid-python/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| numpy==1.26.4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/fluid-su2/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
4 changes: 0 additions & 4 deletions
4
flow-over-heated-plate/plot-final-interface-temperature-requirements.txt
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
flow-over-heated-plate/plot-final-interface-temperature/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/plot-final-interface-temperature/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| numpy==1.26.4 | ||
| matplotlib==3.11.0 | ||
| vtk==9.6.2 |
3 changes: 3 additions & 0 deletions
3
flow-over-heated-plate/plot-final-interface-temperature/requirements.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| numpy >1, <2 | ||
| matplotlib>=3,<4 | ||
| vtk>=9,<10 |
8 changes: 8 additions & 0 deletions
8
flow-over-heated-plate/solid-dunefem/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/solid-dunefem/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| dune-fem==2.12.0.2 | ||
| pyprecice==3.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| dune-fem>=2.11 # Known to work with 2.11.0.5, 2.12.0.2 | ||
| dune-fem>=2.11 | ||
| pyprecice~=3.0 |
13 changes: 13 additions & 0 deletions
13
flow-over-heated-plate/solid-fenics/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/solid-fenics/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| fenicsprecice==2.3.0 | ||
| numpy==1.26.4 | ||
| fenics-dijitso==2019.1.0 | ||
| # fenics-dolfin~=2019.0 # non-PyPI (system/PPA or no matching PyPI version) | ||
| fenics-ffc==2019.1.0.post0 | ||
| fenics-fiat==2019.1.0 | ||
| fenics-ufl-legacy==2022.3.0 |
9 changes: 9 additions & 0 deletions
9
flow-over-heated-plate/solid-fenicsx/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/solid-fenicsx/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| numpy==1.26.4 | ||
| fenicsxprecice==1.0.1 | ||
| mpi4py==4.1.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| numpy | ||
| fenicsxprecice | ||
| numpy >1, <2 | ||
| fenicsxprecice~=1.0 | ||
| mpi4py>=3 |
10 changes: 10 additions & 0 deletions
10
flow-over-heated-plate/solid-nutils/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: flow-over-heated-plate/solid-nutils/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| setuptools==83.0.0 | ||
| nutils==7.3 | ||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| setuptools # required by nutils | ||
| setuptools>=69.0.0 # required by nutils | ||
| nutils~=7.3 | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: oscillator-overlap/solver-python/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 | ||
| scipy==1.18.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 | ||
| scipy | ||
| scipy>=1.10,<2 | ||
|
MakisH marked this conversation as resolved.
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: oscillator/mass-left-fmi/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| fmiprecice==0.2.1 | ||
| pandas==2.3.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| pyprecice~=3.0 | ||
| fmiprecice | ||
| pandas | ||
| fmiprecice~=0.2 | ||
| pandas>=2.0,<3 | ||
|
MakisH marked this conversation as resolved.
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: oscillator/mass-right-fmi/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| fmiprecice==0.2.1 | ||
| pandas==2.3.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| pyprecice~=3.0 | ||
| fmiprecice | ||
| pandas | ||
| fmiprecice~=0.2 | ||
| pandas>=2.0,<3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: oscillator/solver-fmi/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| pyprecice==3.4.0 | ||
| fmiprecice==0.2.1 | ||
| pandas==2.3.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| pyprecice~=3.0 | ||
| fmiprecice | ||
| pandas | ||
| fmiprecice~=0.2 | ||
| pandas>=2.0,<3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: oscillator/solver-python/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| numpy==1.26.4 | ||
| pyprecice==3.4.0 | ||
| scipy==1.18.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| numpy >1, <2 | ||
| pyprecice~=3.0 | ||
| scipy | ||
| scipy>=1.10,<2 |
12 changes: 12 additions & 0 deletions
12
partitioned-burgers-1d/neumann-surrogate/requirements-reference.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # Pinned Python dependency versions for this tutorial participant. | ||
| # Reference only: run scripts keep using loose requirements.txt constraints. | ||
| # Generated by tools/releasing/report_tutorial_requirements.py — do not edit manually. | ||
| # Source: partitioned-burgers-1d/neumann-surrogate/requirements.txt | ||
| # Generated: 2026-07-10T14:26:04Z | ||
|
|
||
| --extra-index-url https://download.pytorch.org/whl/cpu | ||
| numpy==2.5.1 | ||
| scipy==1.18.0 | ||
| torch==2.13.0 | ||
| matplotlib==3.11.0 | ||
| pyprecice==3.4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that we should check:
develop: That there arerequirements-reference.txtfiles: The first time a tutorial is added, it would be good to archive that information.master(i.e., a release): That therequirements-reference.txtfiles are up to date: This is the time I would expect them to be updated.I would say that the
pushevent is not needed, then.