Skip to content

Commit

Permalink
Bump version number to 7.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tpaviot committed Nov 28, 2022
1 parent d7a3e15 commit c436f5c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ if(DEFINED OCE_INCLUDE_PATH)
# if OCE_INCLUDE_PATH is not passed at command line,
# find OCE automatically
else(OCE_INCLUDE_PATH)
find_package(OpenCASCADE 7.6.3 REQUIRED)
find_package(OpenCASCADE 7.7.0 REQUIRED)
if(OpenCASCADE_FOUND)
message(STATUS "OpenCASCADE version found: " ${OpenCASCADE_MAJOR_VERSION} "." ${OpenCASCADE_MINOR_VERSION} "." ${OpenCASCADE_MAINTENANCE_VERSION})
message(STATUS "OpenCASCADE include directory: " ${OpenCASCADE_INCLUDE_DIR})
Expand Down
6 changes: 3 additions & 3 deletions ci/conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "7.6.3" %}
{% set version = "7.7.0" %}

package:
name: pythonocc-core
Expand Down Expand Up @@ -26,11 +26,11 @@ requirements:

host:
- python {{ python }}
- occt ==7.6.3
- occt ==7.7.0
- numpy >=1.17

run:
- occt ==7.6.3
- occt ==7.7.0
- six
- numpy >=1.17

Expand Down
4 changes: 2 additions & 2 deletions src/PkgBase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PYTHONOCC_VERSION_MAJOR = 7
PYTHONOCC_VERSION_MINOR = 6
PYTHONOCC_VERSION_PATCH = 3
PYTHONOCC_VERSION_MINOR = 7
PYTHONOCC_VERSION_PATCH = 0

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

0 comments on commit c436f5c

Please sign in to comment.