Skip to content

Commit

Permalink
v1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae committed Jul 5, 2019
1 parent ddfcc09 commit b6d1343
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 37 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
Changelog
#########

*latest*
--------

v1.8.3 - *2019-07-05*
---------------------

- Use ``scooby`` for ``Versions`` (printinfo), change name to ``Report``.
- DOC: Correct return statement if ``mrec=True``.
- Typos and correct links for new asv/bench.
- Bump requirement to SciPy>=1.0.0, remove warning regarding memory leak in
SciPy 0.19.0.


v1.8.2 - *2019-04-26*
---------------------
Expand All @@ -31,6 +35,7 @@ v1.8.2 - *2019-04-26*
- Move credits for initial funding from the license-section of the manual to
CREDITS.rst, where it belongs.


v1.8.1 - *2018-11-20*
---------------------

Expand Down
19 changes: 0 additions & 19 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,6 @@

----

.. image:: https://readthedocs.org/projects/empymod/badge/?version=latest
:target: http://empymod.readthedocs.io/en/latest
:alt: Documentation Status
.. image:: https://travis-ci.org/empymod/empymod.svg?branch=master
:target: https://travis-ci.org/empymod/empymod
:alt: Travis-CI
.. image:: https://coveralls.io/repos/github/empymod/empymod/badge.svg?branch=master
:target: https://coveralls.io/github/empymod/empymod?branch=master
:alt: Coveralls
.. image:: https://img.shields.io/codacy/grade/b28ed3989ed248fe95e34288e43667b9/master.svg
:target: https://www.codacy.com/app/prisae/empymod
:alt: Codacy
.. image:: https://img.shields.io/badge/benchmark-asv-blue.svg?style=flat
:target: https://empymod.github.io/empymod-asv
:alt: Airspeed Velocity
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.593094.svg
:target: https://doi.org/10.5281/zenodo.593094
:alt: Zenodo DOI

.. sphinx-inclusion-marker
The electromagnetic modeller **empymod** can model electric or magnetic
Expand Down
8 changes: 0 additions & 8 deletions docs/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,6 @@ of ``NumPy`` and ``SciPy``; I recommend using `Anaconda
start the *Anaconda Navigator*, add the channel ``prisae`` and ``empymod`` will
appear in the package list and can be installed with a click.

.. warning::

Do not use ``scipy == 0.19.0``. It has a memory leak in ``quad``, see
`github.com/scipy/scipy/pull/7216
<https://github.com/scipy/scipy/pull/7216>`_. So if you use QUAD (or
potentially QWE) in any of your transforms you might see your memory usage
going through the roof.


The structure of empymod is:

Expand Down
2 changes: 1 addition & 1 deletion empymod/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@
'DigitalFilter']

# Version
__version__ = '1.8.3dev0'
__version__ = '1.8.3'
5 changes: 1 addition & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
numpy
scipy >= 1.0.0
sphinx
sphinxcontrib-napoleon
numpydoc >= 0.9

# scipy 0.19.0 has a memory leak in quad
# github.com/scipy/scipy/pull/7216
scipy != 0.19.0
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

setup(
name='empymod',
version='1.8.3.dev0',
version='1.8.3',
description=description,
long_description=readme,
author='Dieter Werthmüller',
author_email='[email protected]',
url='https://empymod.github.io',
download_url='https://github.com/empymod/empymod/tarball/v1.8.2',
download_url='https://github.com/empymod/empymod/tarball/v1.8.3',
license='Apache License V2.0',
packages=['empymod', 'empymod.scripts'],
classifiers=[
Expand All @@ -25,6 +25,6 @@
],
install_requires=[
'numpy',
'scipy!=0.19.0',
'scipy>=1.0.0',
],
)

0 comments on commit b6d1343

Please sign in to comment.