Conversation
Closed
In addition to PRs and push events into the `devel` branch, also trigger the workflow for PRs into the `main` branch. Only the `build_docs` job will be run, not the `deploy_docs`.
Using `pip` or `pytest` directly does not import the current working directly into Python's `sys.path`. This avoids accidental mistakes.
yguclu
marked this pull request as ready for review
January 16, 2026 10:16
FrederikSchnack
previously approved these changes
Jan 16, 2026
FrederikSchnack
left a comment
Contributor
There was a problem hiding this comment.
LGTM!
I installed the project both ways (TestPyPI and Github) and ran the tests, all seems to work very well.
campospinto
reviewed
Jan 16, 2026
Added section on running tests and examples after installation.
campospinto
approved these changes
Jan 19, 2026
campospinto
left a comment
Collaborator
There was a problem hiding this comment.
Thanks Yaman. I think this version is pretty good!
yguclu
added a commit
that referenced
this pull request
Jan 19, 2026
**List of changes compared to `devel`** - Update version from 0.1 to 1.0.0 in `pyproject.toml` (also visible in `psydac.__version__`) - Add command `psydac` with subcommands `compile`, `mesh`, and `test` - Update installation instructions in files `README.md` and `docs/installation.md` - Update instructions for kernel acceleration in file `README.md` - Update instructions for mesh file generation in file `docs/psydac-mesh.md` - Add file `CHANGELOG.md`, to be kept up-to-date in the future - Update list of maintainers and contributors in `pyproject.toml` and `AUTHORS.md` - Update copyright year to 2026 in file `LICENSE` and Sphinx documentation (through `docs/source/conf.py`) - Update module list and fix some formatting issues in Sphinx documentation - Add `Changelog` and `Tracker` entries to project page on PyPI (through `pyproject.toml`) - Add modules `argparse_helpers`, `main`, `psydac_compile`, `psydac_mesh`, and `psydac_test` to `psydac.cmd` - Remove module `psydac.cmd.mesh` - Make folder `mesh` into new module `psydac.cad.mesh`. Hence, do not define `PSYDAC_MESH_DIR` environment variable in order to run unit tests - Use package `termcolor` to allow for colored error messages in CLI - Remove duplications of `random_string()` across the library. Instead, always use function in `psydac.api.utilities` - Remove Pytest marks `serial` and `parallel` - Stop using custom script `mpi_tester.py`. Instead, use Pytest plugin `pytest-mpi` with its mark `mpi` - Activate many unit tests in `psydac.api.ast` - Stop trying to import removed extension modules `psydac.core.bsp` and `psydac.core.interface` - Remove unused and useless module `psydac.pyccel.symbolic.lambdify` - Add GitHub action `parallel_h5py` for installing `HDF5` and `h5py` in parallel mode, and then testing the installation - Prefer `pip` to `python -m pip` and `pytest` to `python -m pytest` in all GitHub workflows - Where possible, use new `psydac test` command in GitHub workflows instead of long `pytest` instructions - Fix various problems in GitHub workflows - Apply changes required by Codacy
yguclu
added a commit
that referenced
this pull request
Jan 19, 2026
**List of changes compared to `devel`** - Update version from 0.1 to 1.0.0 in `pyproject.toml` (also visible in `psydac.__version__`) - Add command `psydac` with subcommands `compile`, `mesh`, and `test` - Update installation instructions in files `README.md` and `docs/installation.md` - Update instructions for kernel acceleration in file `README.md` - Update instructions for mesh file generation in file `docs/psydac-mesh.md` - Add file `CHANGELOG.md`, to be kept up-to-date in the future - Update list of maintainers and contributors in `pyproject.toml` and `AUTHORS.md` - Update copyright year to 2026 in file `LICENSE` and Sphinx documentation (through `docs/source/conf.py`) - Update module list and fix some formatting issues in Sphinx documentation - Add `Changelog` and `Tracker` entries to project page on PyPI (through `pyproject.toml`) - Add modules `argparse_helpers`, `main`, `psydac_compile`, `psydac_mesh`, and `psydac_test` to `psydac.cmd` - Remove module `psydac.cmd.mesh` - Make folder `mesh` into new module `psydac.cad.mesh`. Hence, do not define `PSYDAC_MESH_DIR` environment variable in order to run unit tests - Use package `termcolor` to allow for colored error messages in CLI - Remove duplications of `random_string()` across the library. Instead, always use function in `psydac.api.utilities` - Remove Pytest marks `serial` and `parallel` - Stop using custom script `mpi_tester.py`. Instead, use Pytest plugin `pytest-mpi` with its mark `mpi` - Activate many unit tests in `psydac.api.ast` - Stop trying to import removed extension modules `psydac.core.bsp` and `psydac.core.interface` - Remove unused and useless module `psydac.pyccel.symbolic.lambdify` - Add GitHub action `parallel_h5py` for installing `HDF5` and `h5py` in parallel mode, and then testing the installation - Prefer `pip` to `python -m pip` and `pytest` to `python -m pytest` in all GitHub workflows - Where possible, use new `psydac test` command in GitHub workflows instead of long `pytest` instructions - Fix various problems in GitHub workflows - Apply changes required by Codacy
yguclu
added a commit
that referenced
this pull request
Jan 19, 2026
**List of changes compared to `devel`** - Update version from 0.1 to 1.0.0 in `pyproject.toml` (also visible in `psydac.__version__`) - Add command `psydac` with subcommands `compile`, `mesh`, and `test` - Update installation instructions in files `README.md` and `docs/installation.md` - Update instructions for kernel acceleration in file `README.md` - Update instructions for mesh file generation in file `docs/psydac-mesh.md` - Add file `CHANGELOG.md`, to be kept up-to-date in the future - Update list of maintainers and contributors in `pyproject.toml` and `AUTHORS.md` - Update copyright year to 2026 in file `LICENSE` and Sphinx documentation (through `docs/source/conf.py`) - Update module list and fix some formatting issues in Sphinx documentation - Add `Changelog` and `Tracker` entries to project page on PyPI (through `pyproject.toml`) - Add modules `argparse_helpers`, `main`, `psydac_compile`, `psydac_mesh`, and `psydac_test` to `psydac.cmd` - Remove module `psydac.cmd.mesh` - Make folder `mesh` into new module `psydac.cad.mesh`. Hence, do not define `PSYDAC_MESH_DIR` environment variable in order to run unit tests - Use package `termcolor` to allow for colored error messages in CLI - Remove duplications of `random_string()` across the library. Instead, always use function in `psydac.api.utilities` - Remove Pytest marks `serial` and `parallel` - Stop using custom script `mpi_tester.py`. Instead, use Pytest plugin `pytest-mpi` with its mark `mpi` - Activate many unit tests in `psydac.api.ast` - Stop trying to import removed extension modules `psydac.core.bsp` and `psydac.core.interface` - Remove unused and useless module `psydac.pyccel.symbolic.lambdify` - Add GitHub action `parallel_h5py` for installing `HDF5` and `h5py` in parallel mode, and then testing the installation - Prefer `pip` to `python -m pip` and `pytest` to `python -m pytest` in all GitHub workflows - Where possible, use new `psydac test` command in GitHub workflows instead of long `pytest` instructions - Fix various problems in GitHub workflows - Apply changes required by Codacy
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Differences between
develandreleasecan be checked at:https://github.com/pyccel/psydac/compare/devel..release
List of changes compared to
devel:pyproject.toml(also visible inpsydac.__version__)psydacwith subcommandscompile,mesh, andtestREADME.mdanddocs/installation.mdREADME.mddocs/psydac-mesh.mdCHANGELOG.md, to be kept up-to-date in the futurepyproject.tomlandAUTHORS.mdLICENSEand Sphinx documentation (throughdocs/source/conf.py)ChangelogandTrackerentries to project page on PyPI (throughpyproject.toml)argparse_helpers,main,psydac_compile,psydac_mesh, andpsydac_testtopsydac.cmdpsydac.cmd.meshmeshinto new modulepsydac.cad.mesh. Hence, do not definePSYDAC_MESH_DIRenvironment variable in order to run unit teststermcolorto allow for colored error messages in CLIrandom_string()across the library. Instead, always use function inpsydac.api.utilitiesserialandparallelmpi_tester.py. Instead, use Pytest pluginpytest-mpiwith its markmpipsydac.api.astpsydac.core.bspandpsydac.core.interfacepsydac.pyccel.symbolic.lambdifyparallel_h5pyfor installingHDF5andh5pyin parallel mode, and then testing the installationpiptopython -m pipandpytesttopython -m pytestin all GitHub workflowspsydac testcommand in GitHub workflows instead of longpytestinstructions