From b370071ba8ec53a11da71bc60c7a7dcf92add0c6 Mon Sep 17 00:00:00 2001 From: Marius Retegan Date: Mon, 8 Oct 2018 08:02:53 +0200 Subject: [PATCH] Update version number to 0.7.1 --- CHANGELOG.rst | 8 ++++++++ crispy/version.py | 2 +- docs/downloads.rst | 6 +++--- setup.py | 15 ++++++++++----- 4 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 74366b49..ebbc82a3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +v0.7.1 (2018-10-07) +------------------- +What's new: + +* ligand field calculations for the lanthanides and actinides +* add MLCT (in addition to the existing LMCT) term to the transition metals +* several bug fixes + v0.7.0 (2018-09-26) ------------------- What's new: diff --git a/crispy/version.py b/crispy/version.py index f1ea4a72..486ffbac 100644 --- a/crispy/version.py +++ b/crispy/version.py @@ -66,7 +66,7 @@ MAJOR = 0 MINOR = 7 MICRO = 1 -RELEV = 'dev' # <16 +RELEV = 'final' # <16 SERIAL = 0 # <16 date = __date__ diff --git a/docs/downloads.rst b/docs/downloads.rst index 45ba0dc1..6c40ced9 100644 --- a/docs/downloads.rst +++ b/docs/downloads.rst @@ -4,7 +4,7 @@ Downloads +----------------------------------+------------------------------+-----------------------------+ | |Windows| | |macOS| | |Linux| | +----------------------------------+------------------------------+-----------------------------+ -| `Crispy-0.7.0-x64.exe (64-bit)`_ | `Crispy-0.7.0.dmg (64-bit)`_ | see the :doc:`installation` | +| `Crispy-0.7.1-x64.exe (64-bit)`_ | `Crispy-0.7.1.dmg (64-bit)`_ | see the :doc:`installation` | | | | | | The installer includes: | The application includes: | page for details. | | - Python 3.5.4 | - Python 3.5.4 | | @@ -34,6 +34,6 @@ Downloads :width: 90pt :align: middle -.. _Crispy-0.7.0-x64.exe (64-bit): https://github.com/mretegan/crispy/releases/download/v0.7.0/Crispy-0.7.0-x64.exe +.. _Crispy-0.7.1-x64.exe (64-bit): https://github.com/mretegan/crispy/releases/download/v0.7.1/Crispy-0.7.1-x64.exe -.. _Crispy-0.7.0.dmg (64-bit): https://github.com/mretegan/crispy/releases/download/v0.7.0/Crispy-0.7.0.dmg +.. _Crispy-0.7.1.dmg (64-bit): https://github.com/mretegan/crispy/releases/download/v0.7.1/Crispy-0.7.1.dmg diff --git a/setup.py b/setup.py index b761c650..ac863604 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ __authors__ = ['Marius Retegan'] __license__ = 'MIT' -__date__ = '25/09/2018' +__date__ = '07/10/2018' import os import sys @@ -54,10 +54,15 @@ def get_version(): return version.strictversion -def install_requires(): +def get_requirements(): + requirements = list() with open('requirements.txt') as fp: - install_requires = fp.readlines() - return install_requires + for line in fp: + if line.startswith('#') or line == '\n': + continue + line = line.strip('\n') + requirements.append(line) + return requirements def main(): @@ -78,7 +83,7 @@ def main(): url='https://github.com/mretegan/crispy', download_url='https://github.com/mretegan/crispy/releases', keywords='gui, spectroscopy, simulation, synchrotron, science', - install_requires=install_requires(), + install_requires=get_requirements(), platforms=[ 'MacOS :: MacOS X', 'Microsoft :: Windows',