Remove black and bump version (#1741)

* Remove black and bump version

* Bump version

* Update changes.md

* Black fix
This commit is contained in:
AU
2025-01-02 21:12:36 +01:00
committed by GitHub
parent 6cb4124fec
commit e49e468e94
3 changed files with 8 additions and 3 deletions

View File

@ -4,7 +4,7 @@ try:
__version__ = version("cadquery")
except PackageNotFoundError:
# package is not installed
__version__ = "2.5.0"
__version__ = "2.5.1"
# these items point to the OCC implementation
from .occ_impl.geom import Plane, BoundBox, Vector, Matrix, Location

View File

@ -1,6 +1,11 @@
Changes
=======
2.5.1
-----
Fixing pip package uploading issue.
2.5.0
------

View File

@ -38,7 +38,7 @@ if not is_rtd and not is_appveyor and not is_azure and not is_conda:
setup(
name="cadquery",
version="2.5.0", # Update this for the next release
version="2.5.1", # Update this for the next release
url="https://github.com/CadQuery/cadquery",
license="Apache Public License 2.0",
author="David Cowden",
@ -55,7 +55,7 @@ setup(
"docutils",
"ipython",
"pytest",
"black@git+https://github.com/cadquery/black.git@cq",
# "black@git+https://github.com/cadquery/black.git@cq",
],
"ipython": ["ipython",],
},