Update changes and metadata for 2.5 (#1738)

* Update changes and metadata for 2.5

* Update version in setup.py

* Update version in  __init__.py

* Update is_conda check
This commit is contained in:
AU
2025-01-02 08:23:43 +01:00
committed by GitHub
parent 7b9a48d591
commit 6cb4124fec
3 changed files with 53 additions and 4 deletions

View File

@ -21,7 +21,7 @@ setup_reqs = []
is_rtd = "READTHEDOCS" in os.environ
is_appveyor = "APPVEYOR" in os.environ
is_azure = "CONDA_PY" in os.environ
is_conda = "CONDA_PREFIX_1" in os.environ
is_conda = "CONDA_PREFIX" in os.environ
# 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:
@ -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.0dev", # Update this for the next release
version="2.5.0", # Update this for the next release
url="https://github.com/CadQuery/cadquery",
license="Apache Public License 2.0",
author="David Cowden",