prepare release 0.16.3 by tpaviot · Pull Request #186 · tpaviot/pythonocc-core · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions AUTHORS
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ set(PYTHONOCC_VERSION_MAJOR 0)
set(PYTHONOCC_VERSION_MINOR 16)
set(PYTHONOCC_VERSION_PATCH 3)
# Empty for official releases, set to -dev, -rc1, etc for development releases
set(PYTHONOCC_VERSION_DEVEL -dev)
set(PYTHONOCC_VERSION_DEVEL)

cmake_minimum_required(VERSION 2.6)

Expand Down
8 changes: 8 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ You may require admin privileges to install

sudo make install

install with conda
------------------
pythonocc-core can be installed using conda on win32/win64/linux64/osx64.

```bash
conda install -c https://conda.anaconda.org/dlr-sc pythonocc-core
```

test
----
In order to check that everything is ok, run the pythonocc unittest suite:
Expand Down
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
=============================
Version 0.16.3 - January 2016

This release requires oce-0.16.0 or oce-0.16.1

* New examples: visualization_overpaint_viewerer,
visualization_graphic3d_custom_opengl.py, matplotlib_box,
parallel_slicer, topology_glue

* PyQt5 support

* Improvements and fixes to the Tesselator class:
Computation of edges, Interface to Vertices, Normals, and Triangles

* minor portability fixes/improvements.

==========================
Version 0.16.2 - July 2015

Expand Down
4 changes: 2 additions & 2 deletions examples/core_visualization_graphic3d_custom_opengl.py