Skip to content

Commit e924b77

Browse files
authored
Merge pull request #1142 from tpaviot/review/occt763
Port to 7.6.3
2 parents 737d87a + b4ddcf7 commit e924b77

5 files changed

Lines changed: 15 additions & 14 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project(PYTHONOCC)
2222
# set pythonOCC version
2323
set(PYTHONOCC_VERSION_MAJOR 7)
2424
set(PYTHONOCC_VERSION_MINOR 6)
25-
set(PYTHONOCC_VERSION_PATCH 2)
25+
set(PYTHONOCC_VERSION_PATCH 3)
2626

2727
# Empty for official releases, set to -dev, -rc1, etc for development releases
2828
set(PYTHONOCC_VERSION_DEVEL )
@@ -147,7 +147,7 @@ if(DEFINED OCE_INCLUDE_PATH)
147147
# if OCE_INCLUDE_PATH is not passed at command line,
148148
# find OCE automatically
149149
else(OCE_INCLUDE_PATH)
150-
find_package(OpenCASCADE 7.6.2 REQUIRED)
150+
find_package(OpenCASCADE 7.6.3 REQUIRED)
151151
if(OpenCASCADE_FOUND)
152152
message(STATUS "OpenCASCADE version found: " ${OpenCASCADE_MAJOR_VERSION} "." ${OpenCASCADE_MINOR_VERSION} "." ${OpenCASCADE_MAINTENANCE_VERSION})
153153
message(STATUS "OpenCASCADE include directory: " ${OpenCASCADE_INCLUDE_DIR})

ci/conda/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "7.6.2" %}
1+
{% set version = "7.6.3" %}
22

33
package:
44
name: pythonocc-core
@@ -26,11 +26,11 @@ requirements:
2626

2727
host:
2828
- python {{ python }}
29-
- occt ==7.6.2
29+
- occt ==7.6.3
3030
- numpy >=1.17
3131

3232
run:
33-
- occt ==7.6.2
33+
- occt ==7.6.3
3434
- python
3535
- six
3636
- numpy >=1.17

src/PkgBase/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PYTHONOCC_VERSION_MAJOR = 7
22
PYTHONOCC_VERSION_MINOR = 6
3-
PYTHONOCC_VERSION_PATCH = 2
3+
PYTHONOCC_VERSION_PATCH = 3
44

55
# Empty for official releases, set to -dev, -rc1, etc for development releases
66
PYTHONOCC_VERSION_DEVEL = ''

src/SWIG_files/wrapper/IntTools.i

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5427,7 +5427,7 @@ None
54275427
class IntTools_WLineTool {
54285428
public:
54295429
/****************** DecompositionOfWLine ******************/
5430-
/**** md5 signature: 34e653d17172e47173c6f5f738af6d81 ****/
5430+
/**** md5 signature: f0e45c7481555cd59fc2441081754a7d ****/
54315431
%feature("compactdefaultargs") DecompositionOfWLine;
54325432
%feature("autodoc", "No available documentation.
54335433
@@ -5442,11 +5442,12 @@ theLConstructor: GeomInt_LineConstructor
54425442
theAvoidLConstructor: bool
54435443
theTol: float
54445444
theNewLines: IntPatch_SequenceOfLine
5445+
&: float
54455446
&: IntTools_Context
54465447
54475448
Returns
54485449
-------
5449-
theReachedTol3d: float
5450+
bool
54505451
") DecompositionOfWLine;
54515452
static Standard_Boolean DecompositionOfWLine(const opencascade::handle<IntPatch_WLine> & theWLine, const opencascade::handle<GeomAdaptor_Surface> & theSurface1, const opencascade::handle<GeomAdaptor_Surface> & theSurface2, const TopoDS_Face & theFace1, const TopoDS_Face & theFace2, const GeomInt_LineConstructor & theLConstructor, const Standard_Boolean theAvoidLConstructor, const Standard_Real theTol, IntPatch_SequenceOfLine & theNewLines, Standard_Real &OutValue, const opencascade::handle<IntTools_Context > &);
54525453

src/SWIG_files/wrapper/generator.log

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
############################
33
Running pythonocc-generator.
44
############################
5-
git revision : 5edec61
5+
git revision : d684974
66

7-
operating system : Linux 64bit 5.4.0-122-generic
7+
operating system : Linux 64bit 5.4.0-125-generic
88

9-
occt version targeted : 7.6.2
9+
occt version targeted : 7.6.3
1010

11-
date : 2022-08-15 09:14:42.643472
11+
date : 2022-09-11 07:02:58.887496
1212
############################
1313

1414
[INFO ] Processing toolkit TKBO ===
@@ -8728,8 +8728,8 @@ date : 2022-08-15 09:14:42.643472
87288728
[INFO ] Class: UnitsAPI
87298729
[INFO ]
87308730
#################################################
8731-
SWIG interface file generation completed in 27.74s
8731+
SWIG interface file generation completed in 35.95s
87328732
#################################################
87338733

87348734
[INFO ] Number of classes: 4495
8735-
[INFO ] Number of methods: 45708
8735+
[INFO ] Number of methods: 45707

0 commit comments

Comments
 (0)