Skip to content

Commit

Permalink
new pip version available (0.6.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
leomariga committed Jul 24, 2021
1 parent 385e086 commit 9eda322
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ Pull requests are the best way to propose changes to the codebase (we use [Githu

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

## Any contributions you make will be under the Apache 2.0 Software License
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.
Expand All @@ -41,6 +42,8 @@ People *love* thorough bug reports. I'm not even kidding.

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

## License
By contributing, you agree that your contributions will be licensed under its Apache License 2.0.
Expand Down
4 changes: 2 additions & 2 deletions pyransac3d/cylinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
class Cylinder:
"""
!!! warning
The cylinder RANSAC in this library works! but does not present good results on real data on the current version.
The cylinder RANSAC does NOT present good results on real data on the current version.
We are working to make a better algorithim using normals. If you want to contribute, please create a MR on github.
You'll be our hero!
Or give us ideas on [this issue](https://github.com/leomariga/pyRANSAC-3D/issues/13)
Implementation for cylinder RANSAC.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pyransac3d", # Replace with your own username
version="0.5.0",
version="0.6.0",
author="Leonardo Mariga",
author_email="[email protected]",
description="A python tool for fitting primitives 3D shapes in point clouds using RANSAC algorithm ",
Expand Down

0 comments on commit 9eda322

Please sign in to comment.