Skip to content

Commit

Permalink
Merge pull request #639 from tpaviot/review/prepare-0.18.2
Browse files Browse the repository at this point in the history
Review/prepare 0.18.2
  • Loading branch information
tpaviot committed Nov 27, 2019
2 parents cdb46dd + 263e805 commit 10f3657
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -22,7 +22,7 @@ set(PYTHONOCC_VERSION_MAJOR 0)
set(PYTHONOCC_VERSION_MINOR 18)
set(PYTHONOCC_VERSION_PATCH 2)
# 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
2 changes: 1 addition & 1 deletion INSTALL.md
Expand Up @@ -33,7 +33,7 @@ can compile/use it :
**Important**: the OCE version has to match the pythonocc-core version,
which is currently **0.18.x**

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

Create a local copy of the repository
-------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -16,7 +16,7 @@ pythonocc is a python library whose purpose is to provide 3D modeling
features. It is intended to developers who aim at developing
CAD/PDM/PLM applications.

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

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

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

Just replace "3.5" with "2.7" or "3.6" in the previous command to fit with your prefered python version.
Expand Down Expand Up @@ -81,7 +81,7 @@ For example; the current pythonocc-core release, 0.18, requires any of the [OCE
0.18.x](https://github.com/tpaviot/oce/releases) releases. Here, the __Major__
version name of either OCE or pythonocc-core release is __0__, the __Minor__
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
number. For example, pythonocc-core 0.18.1 can be built with OCE-0.18.1.
number. For example, pythonocc-core 0.18.2 can be built with OCE-0.18.1.

License
-------
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,4 +1,4 @@
version: pythonocc-core-0.18.2-dev.{build}
version: pythonocc-core-0.18.2.{build}

environment:
binstar_token:
Expand Down
3 changes: 1 addition & 2 deletions cmake/__init__.py
Expand Up @@ -4,7 +4,7 @@
PYTHONOCC_VERSION_MINOR = 18
PYTHONOCC_VERSION_PATCH = 2
# Empty for official releases, set to -dev, -rc1, etc for development releases
PYTHONOCC_VERSION_DEVEL = '-dev'
PYTHONOCC_VERSION_DEVEL = ''

VERSION = "%s.%s.%s%s" % (PYTHONOCC_VERSION_MAJOR, PYTHONOCC_VERSION_MINOR,
PYTHONOCC_VERSION_PATCH, PYTHONOCC_VERSION_DEVEL)
Expand Down Expand Up @@ -64,4 +64,3 @@ def test_require_pythonocc_version():

if __name__ == "__main__":
test_require_pythonocc_version()

0 comments on commit 10f3657

Please sign in to comment.