Skip to content

Commit

Permalink
Fixing v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
cumbof committed Mar 7, 2024
1 parent d89b044 commit ff894f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions chopin2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__authors__ = ("Fabio Cumbo ([email protected])",
"Simone Truglia ([email protected])")

__version__ = "1.0.7"
__date__ = "Apr 21, 2022"
__version__ = "1.0.8.post1"
__date__ = "Feb 28, 2024"
2 changes: 2 additions & 0 deletions chopin2/chopin2.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
import numpy as np
import chopin2.functions as fun

from chopin2 import __version__, __date__

def cite():
"""
Custom argparse action to print citations and exit
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import sys, setuptools

from chopin2 import __version__

if sys.version_info[0] < 3 or (sys.version_info[0] == 3 and sys.version_info[1] < 8):
sys.stdout.write("chopin2 requires Python 3.8 or higher. Your Python your current Python version is {}.{}.{}"
.format(sys.version_info[0], sys.version_info[1], sys.version_info[2]))

setuptools.setup(name='chopin2',
version='1.0.8',
version=__version__,
author='Fabio Cumbo',
author_email='[email protected]',
url='http://github.com/cumbof/chopin2',
Expand Down

0 comments on commit ff894f6

Please sign in to comment.