Skip to content

Commit bb3bc42

Browse files
committedJan 9, 2016
Updated Version number to 0.16.3, updated AUTHORS, NEWS and INSTALL
1 parent 6295ddd commit bb3bc42

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed
 

‎AUTHORS

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
pythonOCC is developed and maintained by Thomas Paviot (tpaviot@gmail.com).
22

33
pythonOCC-core contains contributions from :
4-
* Jelle Feringa (jelleferinga@gmail.com) : conda build for OSX, examples, traits display
5-
* Guillaume Florent (florentsailing@gmail.com) : geometry airfoil example.
4+
* Jelle Feringa (jelleferinga@gmail.com): conda build for OSX, examples, PyQt5 support
5+
* Guillaume Florent (florentsailing@gmail.com): geometry airfoil example.
6+
* Martin Siggel (martin.siggel@dlr.de): conda recipes for linux/windows, wrapper fixes,
7+
matplotlib examples.

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set(PYTHONOCC_VERSION_MAJOR 0)
2222
set(PYTHONOCC_VERSION_MINOR 16)
2323
set(PYTHONOCC_VERSION_PATCH 3)
2424
# Empty for official releases, set to -dev, -rc1, etc for development releases
25-
set(PYTHONOCC_VERSION_DEVEL -dev)
25+
set(PYTHONOCC_VERSION_DEVEL)
2626

2727
cmake_minimum_required(VERSION 2.6)
2828

‎INSTALL.md

+8
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@ You may require admin privileges to install
6767

6868
sudo make install
6969

70+
install with conda
71+
------------------
72+
pythonocc-core can be installed using conda on win32/win64/linux64/osx64.
73+
74+
```bash
75+
conda install -c https://conda.anaconda.org/dlr-sc pythonocc-core
76+
```
77+
7078
test
7179
----
7280
In order to check that everything is ok, run the pythonocc unittest suite:

‎NEWS

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
=============================
2+
Version 0.16.3 - January 2016
3+
4+
This release requires oce-0.16.0 or oce-0.16.1
5+
6+
* New examples: visualization_overpaint_viewerer,
7+
visualization_graphic3d_custom_opengl.py, matplotlib_box,
8+
parallel_slicer, topology_glue
9+
10+
* PyQt5 support
11+
12+
* Improvements and fixes to the Tesselator class:
13+
Computation of edges, Interface to Vertices, Normals, and Triangles
14+
15+
* minor portability fixes/improvements.
16+
117
==========================
218
Version 0.16.2 - July 2015
319

‎cmake/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.16.3-dev"
1+
VERSION = "0.16.3"

0 commit comments

Comments
 (0)
Please sign in to comment.