Skip to content

Commit

Permalink
Move to release 2.5.2 (#1743)
Browse files Browse the repository at this point in the history
* Move to release 2.5.2

* Disabled installation of pre-release versions of cadquery-ocp
  • Loading branch information
jmwright authored Jan 3, 2025
1 parent e49e468 commit 23af517
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cadquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__version__ = version("cadquery")
except PackageNotFoundError:
# package is not installed
__version__ = "2.5.1"
__version__ = "2.5.2"

# these items point to the OCC implementation
from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location
Expand Down
5 changes: 5 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

2.5.2
-----

Fixing pip package dependency issue.

2.5.1
-----

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# Only include the installation dependencies if we are not running on RTD or AppVeyor or in a conda env
if not is_rtd and not is_appveyor and not is_azure and not is_conda:
reqs = [
"cadquery-ocp>=7.7.0a0,<7.8",
"cadquery-ocp>=7.7.0,<7.8",
"ezdxf",
"multimethod>=1.11,<2.0",
"nlopt>=2.9.0,<3.0",
Expand All @@ -38,7 +38,7 @@

setup(
name="cadquery",
version="2.5.1", # Update this for the next release
version="2.5.2", # Update this for the next release
url="https://github.com/CadQuery/cadquery",
license="Apache Public License 2.0",
author="David Cowden",
Expand Down

0 comments on commit 23af517

Please sign in to comment.