Skip to content

Commit

Permalink
bump version to 0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
bottler committed Aug 21, 2018
1 parent 83b2de9 commit 67f5d8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Install with::

Don't install this package if you don't have numpy > 1.7 installed.
On Windows, this package is not usable with Python 2.x.
For Python 3.5 and 3.6 on Windows, there are precompiled wheels available, you may need to do ``pip install wheel`` to use them.
For Python 3.5, 3.6 and 3.7 on Windows, there are precompiled wheels available, you may need to do ``pip install wheel`` to use them.
On other platforms, you will need to be able to compile C++ extensions.
On a Mac, you will need to have installed Xcode and the Xcode command line tools before doing the installation.
The fastest, on-the-fly compiled versions of the log signature calculations are for Windows, Mac and Linux, on both 32 and 64 bit.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, Extension
import numpy, os

version = "0.22"
version = "0.23"
headers = ["bch","calcSignature","logsig","logSigLength","makeCompiledFunction",
"rotationalInvariants","readBCHCoeffs"]

Expand All @@ -15,7 +15,7 @@
os.environ["MACOSX_DEPLOYMENT_TARGET"]=10.9

xtn = Extension('iisignature', ['src/pythonsigs.cpp'],
extra_compile_args=args, # '-DVERSION="'+version+'"'],
extra_compile_args=args,
define_macros=[("VERSION",version)],
include_dirs=[numpy.get_include()],
depends=["src/"+i+".hpp" for i in headers])
Expand All @@ -34,7 +34,7 @@ def readme():
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 1 - Planning',
'Development Status :: 4 - Beta',

# Indicate who your project is intended for
'Intended Audience :: Developers',
Expand Down

0 comments on commit 67f5d8d

Please sign in to comment.