Skip to content

Commit

Permalink
Update version number to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mretegan committed Oct 8, 2018
1 parent fd5032b commit b370071
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion crispy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
MAJOR = 0
MINOR = 7
MICRO = 1
RELEV = 'dev' # <16
RELEV = 'final' # <16
SERIAL = 0 # <16

date = __date__
Expand Down
6 changes: 3 additions & 3 deletions docs/downloads.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 | |
Expand Down Expand Up @@ -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
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

__authors__ = ['Marius Retegan']
__license__ = 'MIT'
__date__ = '25/09/2018'
__date__ = '07/10/2018'

import os
import sys
Expand All @@ -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():
Expand All @@ -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',
Expand Down

0 comments on commit b370071

Please sign in to comment.