Skip to content
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

Version 0.19.0 #165

Merged
merged 11 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

45 changes: 25 additions & 20 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
sympde
SymPDE
======

|build-status| |binder| |docs|
|CI status| |binder| |docs|

**sympde** is a Symbolic calculus library for partial differential equations and variational forms. It can be used to have similar capabilities as the fenics_ project, by extending and writing your own *printing* functions.
**SymPDE** is a symbolic calculus library for partial differential equations and variational forms.
It can be used to have similar capabilities as the fenics_ project, by extending and writing your own *printing* functions.

An example of use can be found in psydac_ or gelato_.

Expand Down Expand Up @@ -42,33 +43,37 @@ From sources
For developers
**************

Because many important features of sympde are only tested in psydac, new PRs
must also be tested against the test suite of psydac. This can be done by opening
a PR in psydac where the only change consists of installing the corresponding
branch of sympde.
Because many important features of SymPDE are only tested in Psydac, new PRs should also be tested against the test suite of Psydac.
This can be done by opening a PR in Psydac, where the only change consists of installing the corresponding branch of SymPDE.
To achieve this, one just needs to modify the line corresponding to ``sympde`` in the ``pyproject.yaml`` file.

For instance to test a new sympde branch called ``my_feature``, the following
lines can be used in the file ``.github/workflows/continuous-integration.yml`` of psydac:
For instance, to test a new SymPDE branch called ``my_feature``, one should write
kvrigor marked this conversation as resolved.
Show resolved Hide resolved

.. code-block:: YAML
.. code-block:: python

- name: Download a development version of sympde
working-directory: /tmp
run: |
wget https://github.com/pyccel/sympde/archive/refs/heads/my_feature.zip
unzip ./my_feature.zip
python3 -m pip install ./sympde-my_feature
# Our packages from PyPi
'sympde @ https://github.com/pyccel/sympde/archive/refs/heads/my_feature.zip',

Similarly, to test an unreleased version of SymPDE called ``v0.18.4-trunk``, one should write

.. |build-status| image:: https://travis-ci.com/pyccel/sympde.svg?branch=master
:alt: build status
.. code-block:: python

# Our packages from PyPi
'sympde @ https://github.com/pyccel/sympde/archive/refs/tags/v0.18.4-trunk.zip',

Do not forget the comma at the end of the line, as this is an item in a list.
Also, pay attention to the words ``head`` and ``tags`` in the path: the former is used for Git branches, the latter is used for Git tags (which may or may not correspond to GitHub releases).


.. |CI status| image:: https://github.com/pyccel/sympde/actions/workflows/continuous-integration.yml/badge.svg?branch=master&event=push
:alt: CI status
:scale: 100%
:target: https://travis-ci.com/pyccel/sympde
:target: https://github.com/pyccel/sympde/actions/workflows/continuous-integration.yml

.. |docs| image:: https://readthedocs.org/projects/sympde/badge/?version=latest
kvrigor marked this conversation as resolved.
Show resolved Hide resolved
:alt: Documentation Status
:scale: 100%
:target: http://sympde.readthedocs.io/en/latest/?badge=latest

.. |binder| image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/pyccel/sympde/master
:target: https://mybinder.org/v2/gh/pyccel/sympde/master
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sympde"
version = "0.18.4"
version = "0.19.0"
description = "Symbolic calculus for partial differential equations (and variational forms)"
readme = "README.rst"
requires-python = ">= 3.8, < 3.13"
kvrigor marked this conversation as resolved.
Show resolved Hide resolved
Expand Down