Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@
import sys
import warnings


VERSION_BASE = "0.3.4"
try:
from Cython.Build import cythonize
USE_CYTHON = True
VERSION = f"{VERSION_BASE}+cython"
except ImportError:
USE_CYTHON = False
VERSION = f"{VERSION_BASE}+raw"

# numpy path is needed for building with and without cython:
try:
Expand Down Expand Up @@ -61,7 +65,7 @@ def finalize_options(self):

kwargs = {
'name': 'fastdtw',
'version': '0.3.4',
'version': VERSION,
'author': 'Kazuaki Tanida',
'url': 'https://github.com/slaypni/fastdtw',
'description': 'Dynamic Time Warping (DTW) algorithm with an O(N) time and memory complexity.',
Expand Down