Skip to content

Commit 180b860

Browse files
committed
version 1.0.8 for pip
1 parent 8e12e08 commit 180b860

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010

1111
[project]
1212
name = "daisy-exact-search"
13-
version = "1.0.7"
13+
version = "1.0.8"
1414
description = "DaiSy: A Library for Scalable Data Series Similarity Search"
1515
readme = "README.md"
1616
requires-python = ">=3.10"

scripts/publish_pip.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ if [ $? -ne 0 ]; then
4141
fi
4242

4343
echo
44-
# Upload to PyPI
44+
# Upload to PyPI (source distribution only)
4545
echo "Uploading to PyPI..."
46-
python -m twine upload dist/*
46+
python -m twine upload dist/*.tar.gz
4747

4848
if [ $? -eq 0 ]; then
4949
echo

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from setuptools.command.build_ext import build_ext as _build_ext
1212

1313
# Version
14-
__version__ = "1.0.7"
14+
__version__ = "1.0.8"
1515

1616
# Detect platform
1717
IS_MACOS = sys.platform == "darwin"

0 commit comments

Comments
 (0)