Skip to content

Commit ef111d7

Browse files
committed
update README/NEWS for 7.4.0beta2
1 parent 01f7b70 commit ef111d7

File tree

4 files changed

+25
-17
lines changed

4 files changed

+25
-17
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ set(PYTHONOCC_VERSION_MAJOR 7)
2323
set(PYTHONOCC_VERSION_MINOR 4)
2424
set(PYTHONOCC_VERSION_PATCH 0)
2525
# Empty for official releases, set to -dev, -rc1, etc for development releases
26-
set(PYTHONOCC_VERSION_DEVEL -dev)
26+
set(PYTHONOCC_VERSION_DEVEL -beta2)
2727

2828
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
2929

NEWS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
==========================
2+
Version 7.4.0beta2 - December 2019
3+
4+
This release require opencascade 7.4.0
5+
6+
* wrapper: add mssigin class Shape_Upgrade_UnifySameDomain
7+
8+
* wrapper: fixed docstring to hide deprecated handle stuff
9+
10+
* wrapper: fixed wrong HSEQUENCE wrapper
11+
12+
* ci/cd: moved from Travis/Appveyor to MS Azure
13+
14+
* code clean-up
15+
116
==========================
217
Version 7.4.0beta - December 2019
318

README.md

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pythonocc is a python package whose purpose is to provide 3D modeling
1515
features. It is intended to developers who aim at developing
1616
CAD/PDM/PLM applications.
1717

18-
Latest release : [pythonocc-core 7.4.0beta (december 2019)](https://github.com/tpaviot/pythonocc-core/releases/tag/7.4.0beta)
18+
Latest release : [pythonocc-core 7.4.0beta2 (december 2019)](https://github.com/tpaviot/pythonocc-core/releases/tag/7.4.0beta2)
1919

2020

2121
Build from source
@@ -32,38 +32,31 @@ pythonocc provides precompiled [conda packages](https://anaconda.org/pythonocc/p
3232
# first create an environment
3333
conda create --name=whatever-name python=3.7
3434
source activate whatever-name
35-
conda install -c dlr-sc pythonocc-core=7.4.0beta
35+
conda install -c dlr-sc -c pythonocc pythonocc-core=7.4.0beta2
3636
```
3737

38-
Just replace "3.7" with the python version you target.
38+
Conda packages are provided for python 3.6 and 3.7.
3939

4040
Other pythonocc related resources
4141
---------------------------------
4242

43-
* Demos : python examples, as well as jupyter notebooks https://github.com/tpaviot/pythonocc-demos
43+
* Demos: python examples, as well as jupyter notebooks https://github.com/tpaviot/pythonocc-demos
4444

45-
* Docker, binderhub : docker and online jupyter notebooks https://github.com/tpaviot/pythonocc-binderhub
45+
* Docker, binderhub: docker and online jupyter notebooks https://github.com/tpaviot/pythonocc-binderhub
46+
47+
* Documentation: https://github.com/tpaviot/pythonocc-documentation
4648

4749
Online resources for development
4850
--------------------------------
4951

5052
We use the following online resources:
51-
* Homepage: http://www.pythonocc.org
52-
53-
* Anaconda cloud repository for official releases: https://anaconda.org/pythonocc
54-
55-
* Anaconda cloud repository for nightly builds: https://anaconda.org/tpaviot/pythonocc-core
5653

57-
* API documentation: https://cdn.rawgit.com/tpaviot/pythonocc-core/e05ec51b/doc/apidoc/0.18.1/
54+
* Homepage: http://www.pythonocc.org
5855

5956
* Mailing list: http://groups.google.com/group/pythonocc
6057

6158
* Twitter : https://twitter.com/pythonocc
6259

63-
* Appveyor Continuous Integration Service: https://ci.appveyor.com/project/tpaviot/pythonocc-core
64-
65-
* Travis Continuous Integration Service: https://travis-ci.org/tpaviot/pythonocc-core
66-
6760
* LGTM code quality review: https://lgtm.com/projects/g/tpaviot/honocc-core/
6861

6962
* Codacy quality checker: https://app.codacy.com/app/tpaviot/pythonocc-core

cmake/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
PYTHONOCC_VERSION_MINOR = 4
55
PYTHONOCC_VERSION_PATCH = 0
66
# Empty for official releases, set to -dev, -rc1, etc for development releases
7-
PYTHONOCC_VERSION_DEVEL = '-dev'
7+
PYTHONOCC_VERSION_DEVEL = '-beta2'
88

99
VERSION = "%s.%s.%s%s" % (PYTHONOCC_VERSION_MAJOR, PYTHONOCC_VERSION_MINOR,
1010
PYTHONOCC_VERSION_PATCH, PYTHONOCC_VERSION_DEVEL)

0 commit comments

Comments
 (0)