-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- windows crashes if vbo is loaded with first point cloud - skip write_vbo for first point cloud - fix github pipelines - add windows to unit tests - add python versions to test matrix - update version path in setup.cfg - drop limitation of PyQt5 version for windows Closes: #67
- Loading branch information
Showing
7 changed files
with
26 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.7.5" | ||
__version__ = "0.7.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ numpy~=1.21.4 | |
open3d~=0.14.1 | ||
PyOpenGL~=3.1.5 | ||
PyQt5~=5.14.1 | ||
pytest~=7.1.1 | ||
pytest-qt~=4.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = labelCloud | ||
version = attr: labelCloud.__version__ | ||
version = attr: labelCloud.__init__.__version__ | ||
maintainer = Christoph Sager | ||
maintainer_email = [email protected] | ||
license = GNU General Public License v3.0 | ||
|
@@ -52,8 +52,7 @@ install_requires = | |
numpy | ||
open3d | ||
PyOpenGL | ||
PyQt5 <= 5.14.1;platform_system=='Windows' | ||
PyQt5;platform_system!='Windows' | ||
PyQt5 | ||
python_requires = >=3.6 | ||
|
||
[options.entry_points] | ||
|