Skip to content

Commit 9eda322

Browse files
committed
new pip version available (0.6.0)
1 parent 385e086 commit 9eda322

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ Pull requests are the best way to propose changes to the codebase (we use [Githu
1515

1616
1. Fork the repo and create a new branch from `master`.
1717
2. If you've added code that should be tested, add tests.
18-
3. If you've changed APIs, update the documentation.
18+
3. Update the documentation.
1919
4. Ensure the test suite passes.
2020
5. Make sure your code lints.
2121
6. Issue that pull request!
22+
6. Clean unused files before commiting using `invoke clean`
2223

2324
## Any contributions you make will be under the Apache 2.0 Software License
2425
In short, when you submit code changes, your submissions are understood to be under the same [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) that covers the project. Feel free to contact the maintainers if that's a concern.
@@ -41,6 +42,8 @@ People *love* thorough bug reports. I'm not even kidding.
4142

4243
## Use a Consistent Coding Style
4344
* 4 spaces for indentation rather than tabs
45+
* We have many interesting commands to help create a better code, try `invoke --list`
46+
* Use `invoke lint` and `invoke format` before commit
4447

4548
## License
4649
By contributing, you agree that your contributions will be licensed under its Apache License 2.0.

pyransac3d/cylinder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
class Cylinder:
99
"""
1010
!!! warning
11-
The cylinder RANSAC in this library works! but does not present good results on real data on the current version.
11+
The cylinder RANSAC does NOT present good results on real data on the current version.
1212
We are working to make a better algorithim using normals. If you want to contribute, please create a MR on github.
13-
You'll be our hero!
13+
Or give us ideas on [this issue](https://github.com/leomariga/pyRANSAC-3D/issues/13)
1414
1515
Implementation for cylinder RANSAC.
1616

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="pyransac3d", # Replace with your own username
8-
version="0.5.0",
8+
version="0.6.0",
99
author="Leonardo Mariga",
1010
author_email="leomariga@gmail.com",
1111
description="A python tool for fitting primitives 3D shapes in point clouds using RANSAC algorithm ",

0 commit comments

Comments
 (0)