3.4.3: Maintenance release #873
Replies: 3 comments 4 replies
-
Dear @guyer and colleagues, Many thanks for Fipy 3.4.3! What a coincidence, we are currently working with our IT department to prepare the computer rooms of our school for next year's courses, and evaluating different options for our Python stack. We unadvertedly ran the new version on JupyterLite (with Python 3.10), not knowing that 3.4.3 had just appeared. JupyterLite is a Jupyter Notebook that runs completely in the web browser using Javascript/Webassembly technology. This is of interest for teaching purposes, as the students do not have to install any specific software stack. It might even run on a smartphone. The good news is that we were able to use JupyterLite and run Fipy on a simple cylindrical 1D diffusion problem, all inside a web browser. We did not test any further and will probably continue using a local conda installation instead of JupyterLite for our course. A JupyterLite instance can be opened via: https://jupyterlite.readthedocs.io/en/latest/_static/lab/index.html Create a Notebook. In the first cell of the Notebook, put the following code. import piplite
await piplite.install("fipy") and in the next cell: import fipy as fp
print('Fipy version',fp.__version__) The Our example/test notebook worked fine with JupyterLite (with the Thanks again for Fipy. |
Beta Was this translation helpful? Give feedback.
-
That's great to hear, @mhvwerts. The warnings are probably nothing to worry about, but please share if you're at all concerned. |
Beta Was this translation helpful? Give feedback.
-
FYI: anaconda and/or conda-forge are having a major breakage right now, leading to 3.4.3 not being available via |
Beta Was this translation helpful? Give feedback.
-
This maintenance release adds a new example contributed by @Jon83Carvalho, clarifies many points in the documentation, migrates all CI to Azure, updates to using wheels for distribution, and substantially refactors matrices to work more consistently across solvers.
What's Changed
colorbar
argument to valid value by @guyer in Changecolorbar
argument to valid value #829New Contributors
Curated Changelog: https://github.com/usnistgov/fipy/blob/3.4.3/CHANGELOG.rst
Full Changelog: 3.4.2.1...3.4.3
This discussion was created from the release 3.4.3: Maintenance release.
Beta Was this translation helpful? Give feedback.
All reactions