Skip to content

Commit cfdebd6

Browse files
REL: Prepare 1.4.0 release
1 parent aff9c9f commit cfdebd6

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

AUTHORS.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
* `Florian Wagner <https://orcid.org/0000-0001-7407-9741>`_
1414

15-
*RWTH Aachen University, Institute for Applied Geophysics and Geothermal Energy, Aachen, Germany*
15+
*RWTH Aachen University, Geophysical Imaging and Monitoring (GIM), Aachen, Germany*
1616

1717
florian@pygimli.org
1818

@@ -28,4 +28,4 @@
2828

2929
* `Andrea Balza <https://www.andreabalza.com>`_
3030

31-
*RWTH Aachen University, Institute for Applied Geophysics and Geothermal Energy, Aachen, Germany*
31+
*RWTH Aachen University, Geophysical Imaging and Monitoring (GIM), Aachen, Germany*

INSTALLATION.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Open a terminal (Linux & Mac) or the Anaconda Prompt (Windows) and type:
3636

3737
.. code-block:: bash
3838
39-
conda create -n pg -c gimli -c conda-forge pygimli=1.3.1
39+
conda create -n pg -c gimli -c conda-forge pygimli=1.4.0
4040
4141
If you are using Windows or Mac, a new environment named "pg" should be visible
4242
in the Anaconda Navigator. If you want to use pyGIMLi from the command line, you
@@ -78,13 +78,13 @@ condacolab package by
7878
condacolab.install()
7979
8080
After doing so, the kernel is automatically restarted, so import condacolab
81-
again and install pygimli using mamba just as mentioned above.
81+
again and install pygimli using conda just as mentioned above.
8282

8383
.. code:: Python
8484
8585
import condacolab
8686
condacolab.check()
87-
!mamba install -c gimli pygimli=1.3.1
87+
!conda install -c gimli pygimli=1.4.0
8888
8989
Testing the installation
9090
------------------------
@@ -139,4 +139,4 @@ Later you can just update the pygimli code by
139139
140140
Only if you need recent changes to the C++ core, you have to compile
141141
pyGIMLi using your systems toolchain as described in
142-
https://www.pygimli.org/compilation.html#sec-build
142+
https://www.pygimli.org/compilation.html#sec-build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ separate environment. Here we call this environment pg, but you can give it any
4545
name. Note that this environment has to be created only once.
4646

4747
``` bash
48-
conda create -n pg -c gimli -c conda-forge pygimli=1.3.1
48+
conda create -n pg -c gimli -c conda-forge pygimli=1.4.0
4949
```
5050

5151
If you are using Windows or Mac, a new environment named “pg” should be visible in the Anaconda Navigator. If you want to use pygimli from the command line, you have to activate the environment. You can put this line in your ~/.bashrc file so that it is activated automatically if you open a terminal.

doc/gimliuses.bib

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,6 @@ @Article{gruenenbaum2023JoH
884884
volume = {617},
885885
doi = {10.1016/j.jhydrol.2023.129074},
886886
publisher = {Elsevier {BV}},
887-
url = {https://doi.org/10.1016/j.jhydrol.2023.129074},
888887
}
889888
890889
@Article{rochlitz2023GJI,

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- defaults
55
- gimli
66
dependencies:
7-
- pgcore >= 1.3.0
7+
- pgcore >= 1.4.0
88
- matplotlib
99
- jupyter
1010
- sphinx >= 3.1

pygimli/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ def __ModellingBase__createJacobian_mt__(self, model, resp):
888888
if sys.platform == 'win32' or 'darwin':
889889
# strange pickle problem: see python test_PhysicsManagers.py ves
890890
from .logger import warn
891-
warn('Multiprocess jacobian currently unavailable for win build')
891+
warn('Multiprocess Jacobian currently unavailable for Win32 and Mac.')
892892
nProcs = 1
893893

894894
if nProcs == 1:

0 commit comments

Comments
 (0)