Skip to content

Commit

Permalink
v2.1.3 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae authored Jul 20, 2022
1 parent d2b2402 commit 6ccc0e9
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:

steps:

# Cancel any previous run of the test job; [pin v0.8.0 (2021-02-13)]
# Cancel any previous run of the test job; [pin v0.10.0 (2022-06-27)]
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d
uses: styfle/cancel-workflow-action@bb6001c4ea612bf59c3abfc4756fbceee4f870c7
with:
access_token: ${{ github.token }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ jobs:

steps:

# Cancel any previous run of the test job; [pin v0.8.0 (2021-02-13)]
# Cancel any previous run of the test job; [pin v0.10.0 (2022-06-27)]
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d
uses: styfle/cancel-workflow-action@bb6001c4ea612bf59c3abfc4756fbceee4f870c7
with:
access_token: ${{ github.token }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:

steps:

# Cancel any previous run of the test job; [pin v0.8.0 (2021-02-13)]
# Cancel any previous run of the test job; [pin v0.10.0 (2022-06-27)]
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d
uses: styfle/cancel-workflow-action@bb6001c4ea612bf59c3abfc4756fbceee4f870c7
with:
access_token: ${{ github.token }}

Expand Down
19 changes: 14 additions & 5 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ Version 2
~~~~~~~~~


v2.0.x
v2.1.x
""""""


latest
------
v2.1.4: Squeeze
---------------

**2022-07-20**


- The main modelling routines ``bipole``, ``dipole``, ``loop``, and
``analytical`` take a new keyword argument ``squeeze``, which is set to
Expand All @@ -30,8 +33,8 @@ latest

- Maintenance:

- Use scipy through conda in CI.
- Fix ``do_3d_projection`` for ``matplotlib>3.5.0``.
- Use scipy through conda in CI.
- Fix ``do_3d_projection`` for ``matplotlib>3.5.0``.


v2.1.3: Random noise example
Expand Down Expand Up @@ -91,6 +94,10 @@ v2.1.0: Theme change & streamline
- Slight rework of some parts of the docs.


v2.0.x
""""""


v2.0.6: Bugfix Windows int32/64
-------------------------------

Expand Down Expand Up @@ -266,6 +273,7 @@ Version 1
v1.10.x
"""""""


v1.10.6: Various azimuths and dips at same depth
------------------------------------------------

Expand Down Expand Up @@ -372,6 +380,7 @@ v1.10.0: Loop source and receiver
v1.9.x
"""""""


v1.9.0 : Laplace
----------------

Expand Down
2 changes: 1 addition & 1 deletion docs/manual/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ or via ``pip``:
pip install empymod
Minimum requirements are Python version 3.6 or higher and the modules ``scipy``
Minimum requirements are Python version 3.7 or higher and the modules ``scipy``
and ``numba``.

The modeller empymod comes with add-ons (``empymod.scripts``). These add-ons
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import sys
from setuptools import setup

if not sys.version_info[:2] >= (3, 6):
sys.exit(f"empymod is only meant for Python 3.6 and up.\n"
if not sys.version_info[:2] >= (3, 7):
sys.exit(f"empymod is only meant for Python 3.7 and up.\n"
f"Current version: {sys.version_info[0]}.{sys.version_info[1]}.")

# Get README and remove badges.
Expand Down

0 comments on commit 6ccc0e9

Please sign in to comment.