Skip to content

Commit

Permalink
Preparing actions for version update.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfolgado committed Apr 20, 2022
1 parent 8318ad2 commit 0cb67e1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

Version 0.1.3
=============
- Fixed a bug on the setup.py to correctly build the PyPI package
- Removed novainstrumentation from dependencies
- Fixed a bug on TWED distance (`#7 <https://github.com/fraunhoferportugal/tssearch/pull/7>`_)

Version 0.1.0
=============

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.1.1'
version = u'0.1.3'
# The full version, including alpha/beta/rc tags.
release = u'0.1.1'
release = u'0.1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ pandas >= 1.3.4
scipy >= 1.7.1
seaborn >= 0.11.2
setuptools >= 47.1.1
novainstrumentation == 0.4
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

setuptools.setup(
name="tssearch",
version="0.1.2",
version="0.1.3",
author="Fraunhofer Portugal",
description="Library for time series subsequence search",
long_description=long_description,
long_description_content_type="text/markdown",
download_url="https://github.com/fraunhoferportugal/tssearch/archive/refs/tags/v0.1.1.tar.gz",
download_url="https://github.com/fraunhoferportugal/tssearch/archive/refs/tags/v0.1.3.tar.gz",
package_data={'tssearch': ['distances/distances.json', 'examples/ecg.pickle']},
packages=setuptools.find_packages(),
classifiers=[
Expand Down
1 change: 0 additions & 1 deletion tssearch/utils/visualisation.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
import novainstrumentation as ni

from matplotlib.collections import LineCollection

Expand Down

0 comments on commit 0cb67e1

Please sign in to comment.