Skip to content

Commit

Permalink
release 0.0.2 (#5)
Browse files Browse the repository at this point in the history
Co-authored-by: TANG ZHIXIONG <[email protected]>
  • Loading branch information
district10 and TANG ZHIXIONG authored Nov 4, 2022
1 parent 8bb8a13 commit 849aeb8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build_script:
- ps: |
python -m build -s
cd dist
python -m pip install --verbose concave_hull-0.0.1.tar.gz
python -m pip install --verbose concave_hull-0.0.2.tar.gz
cd ..
test_script:
- ps: python -m pytest
4 changes: 2 additions & 2 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: concave_hull
version: 0.0.1
version: 0.0.2

source:
path: ..
Expand Down Expand Up @@ -35,5 +35,5 @@ test:
- python -m pytest

about:
summary: C++/pybind11/NumPy implementation of the Ramer-Douglas-Peucker algorithm (Ramer 1972; Douglas and Peucker 1973) for 2D and 3D data.
summary: A very fast 2D concave hull algorithm
license_file: LICENSE
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
# built documents.
#
# The short X.Y version.
version = '0.0.1'
version = '0.0.2'
# The full version, including alpha/beta/rc tags.
release = '0.0.1'
release = '0.0.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ def build_extension(self, ext):
# logic and declaration, and simpler if you include description/version in a file.
setup(
name="concave_hull",
version="0.0.1",
version="0.0.2",
author="tzx",
author_email="[email protected]",
url="https://github.com/cubao/concave_hull",
description="C++/pybind11/NumPy implementation of the Ramer-Douglas-Peucker algorithm (Ramer 1972; Douglas and Peucker 1973) for 2D and 3D data.",
description="A very fast 2D concave hull algorithm",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
ext_modules=[CMakeExtension("concave_hull")],
Expand Down

0 comments on commit 849aeb8

Please sign in to comment.