Skip to content

Commit 544e72a

Browse files
authored
Update to OCCT 7.5.2 (#82)
* Update to OCCT 7.5.2 * Use Python 3.7 for binding generation
1 parent 639704f commit 544e72a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# License along with this library; if not, write to the Free Software
1919
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2020
cmake_minimum_required(VERSION 3.15...3.20)
21-
project(pyOCCT VERSION 7.5.1.2 LANGUAGES C CXX)
21+
project(pyOCCT VERSION 7.5.2.0 LANGUAGES C CXX)
2222

2323

2424
# --------------------------------------------------------------------------- #
@@ -32,8 +32,8 @@ option(ENABLE_WARNINGS "Disable warning output." OFF)
3232
# --------------------------------------------------------------------------- #
3333
set(pyOCCT_MAJOR_VERSION 7)
3434
set(pyOCCT_MINOR_VERSION 5)
35-
set(pyOCCT_PATCH_VERSION 1)
36-
set(pyOCCT_TWEAK_VERSION 2)
35+
set(pyOCCT_PATCH_VERSION 2)
36+
set(pyOCCT_TWEAK_VERSION 0)
3737

3838
if(WIN32)
3939
set(EXTENSION ".pyd")
@@ -118,7 +118,7 @@ endif()
118118
include_directories(inc)
119119
if(NOT DEFINED OpenCASCADE_INCLUDE_DIR OR NOT DEFINED OpenCASCADE_LIBRARY_DIR)
120120
message(STATUS "Searching for OpenCASCADE...")
121-
find_package(OpenCASCADE 7.5.1 REQUIRED)
121+
find_package(OpenCASCADE 7.5.2 REQUIRED)
122122
endif()
123123

124124
if(NOT EXISTS ${OpenCASCADE_INCLUDE_DIR})

OCCT/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# You should have received a copy of the GNU Lesser General Public
1818
# License along with this library; if not, write to the Free Software
1919
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20-
__version__ = '7.5.1.2'
20+
__version__ = '7.5.2.0'

binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies:
55
- python=3.7
66
- clangdev
77
- python-clang
8-
- occt=7.5.1
8+
- occt=7.5.2
99
- tbb-devel

ci/conda/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: pyocct
3-
version: 7.5.1.2
3+
version: 7.5.2.0
44

55
source:
66
path: ../..
@@ -20,12 +20,12 @@ requirements:
2020
host:
2121
- python
2222
- pybind11
23-
- occt ==7.5.1
23+
- occt ==7.5.2
2424
- tbb-devel
2525

2626
run:
2727
- python
28-
- occt ==7.5.1
28+
- occt ==7.5.2
2929

3030
test:
3131
source_files:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='OCCT',
5-
version='7.5.1.2',
5+
version='7.5.2.0',
66
packages=['OCCT', 'OCCT.Exchange', 'OCCT.Visualization'],
77
package_data={'OCCT': ['*.so', '*.pyd', '*.dll', 'Visualization/_resources/*']},
88
author='Trevor Laughlin',

0 commit comments

Comments
 (0)