Skip to content

Commit 10f3657

Browse files
authored
Merge pull request #639 from tpaviot/review/prepare-0.18.2
Review/prepare 0.18.2
2 parents cdb46dd + 263e805 commit 10f3657

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

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 18)
2323
set(PYTHONOCC_VERSION_PATCH 2)
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ can compile/use it :
3333
**Important**: the OCE version has to match the pythonocc-core version,
3434
which is currently **0.18.x**
3535

36-
- Optional : smesh-6.7.4 (https://github.com/tpaviot/smesh)
36+
- Optional : smesh-6.7.6 (https://github.com/tpaviot/smesh)
3737

3838
Create a local copy of the repository
3939
-------------------------------------

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pythonocc is a python library whose purpose is to provide 3D modeling
1616
features. It is intended to developers who aim at developing
1717
CAD/PDM/PLM applications.
1818

19-
Latest release : [pythonocc-core 0.18.1 (december 2017)](https://github.com/tpaviot/pythonocc-core/releases/tag/0.18.1)
19+
Latest release : [pythonocc-core 0.18.2 (december 2019)](https://github.com/tpaviot/pythonocc-core/releases/tag/0.18.2)
2020

2121
Download/install binaries
2222
-------------------------
@@ -25,7 +25,7 @@ pythonocc provides precompiled [conda packages](https://anaconda.org/pythonocc/p
2525

2626
```bash
2727
# install pythonocc in the active environment with python 3.5
28-
conda install -c conda-forge -c dlr-sc -c pythonocc -c oce pythonocc-core==0.18.1 python=3.5
28+
conda install -c conda-forge -c dlr-sc -c pythonocc -c oce pythonocc-core==0.18.2 python=3.7
2929
```
3030

3131
Just replace "3.5" with "2.7" or "3.6" in the previous command to fit with your prefered python version.
@@ -81,7 +81,7 @@ For example; the current pythonocc-core release, 0.18, requires any of the [OCE
8181
0.18.x](https://github.com/tpaviot/oce/releases) releases. Here, the __Major__
8282
version name of either OCE or pythonocc-core release is __0__, the __Minor__
8383
version is __18__ and the __Patch__ version is (optionally) __x__. pythonocc-core can be built with any OCE version that has a corresponding __Major__ and __Minor__ version
84-
number. For example, pythonocc-core 0.18.1 can be built with OCE-0.18.1.
84+
number. For example, pythonocc-core 0.18.2 can be built with OCE-0.18.1.
8585

8686
License
8787
-------

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: pythonocc-core-0.18.2-dev.{build}
1+
version: pythonocc-core-0.18.2.{build}
22

33
environment:
44
binstar_token:

cmake/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
PYTHONOCC_VERSION_MINOR = 18
55
PYTHONOCC_VERSION_PATCH = 2
66
# Empty for official releases, set to -dev, -rc1, etc for development releases
7-
PYTHONOCC_VERSION_DEVEL = '-dev'
7+
PYTHONOCC_VERSION_DEVEL = ''
88

99
VERSION = "%s.%s.%s%s" % (PYTHONOCC_VERSION_MAJOR, PYTHONOCC_VERSION_MINOR,
1010
PYTHONOCC_VERSION_PATCH, PYTHONOCC_VERSION_DEVEL)
@@ -64,4 +64,3 @@ def test_require_pythonocc_version():
6464

6565
if __name__ == "__main__":
6666
test_require_pythonocc_version()
67-

0 commit comments

Comments
 (0)