From b2d3040946ec874061453bef77d78ac9606d023c Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Fri, 7 Jun 2024 09:13:10 +0000 Subject: [PATCH] chore: update dev version to 0.7.dev0 (#1246) Co-authored-by: pyansys-ci-bot Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .github/workflows/nightly_docker_test.yml | 8 +++++++- doc/changelog.d/1246.changed.md | 1 + doc/source/assets.rst | 2 +- doc/source/getting_started/installation.rst | 2 +- pyproject.toml | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 doc/changelog.d/1246.changed.md diff --git a/.github/workflows/nightly_docker_test.yml b/.github/workflows/nightly_docker_test.yml index 57eb73c181..f891eedcc8 100644 --- a/.github/workflows/nightly_docker_test.yml +++ b/.github/workflows/nightly_docker_test.yml @@ -7,9 +7,15 @@ on: push: paths: - '.github/workflows/nightly_docker_test.yml' + # Sequence of patterns matched against refs/heads + branches-ignore: + - 'release/**' + # Sequence of patterns matched against refs/tags + tags-ignore: + - v* env: - MAIN_PYTHON_VERSION: '3.12' + MAIN_PYTHON_VERSION: '3.11' ANSRV_GEO_IMAGE_WINDOWS_TAG: ghcr.io/ansys/geometry:windows-latest-unstable ANSRV_GEO_IMAGE_LINUX_TAG: ghcr.io/ansys/geometry:linux-latest-unstable ANSRV_GEO_PORT: 710 diff --git a/doc/changelog.d/1246.changed.md b/doc/changelog.d/1246.changed.md new file mode 100644 index 0000000000..38e908031d --- /dev/null +++ b/doc/changelog.d/1246.changed.md @@ -0,0 +1 @@ +chore: update dev version to 0.7.dev0 \ No newline at end of file diff --git a/doc/source/assets.rst b/doc/source/assets.rst index 65d64198f2..5e477e69e2 100644 --- a/doc/source/assets.rst +++ b/doc/source/assets.rst @@ -25,7 +25,7 @@ For example, on Linux with Python 3.9, unzip the wheelhouse archive and install .. code:: bash - unzip ansys-geometry-core-v0.6.dev0-wheelhouse-ubuntu-latest3.9.zip wheelhouse + unzip ansys-geometry-core-v0.7.dev0-wheelhouse-ubuntu-latest-3.9.zip wheelhouse pip install ansys-geometry-core -f wheelhouse --no-index --upgrade --ignore-installed If you are on Windows with Python 3.9, unzip to a wheelhouse directory by running ``-d wheelhouse`` diff --git a/doc/source/getting_started/installation.rst b/doc/source/getting_started/installation.rst index 88f816d314..a7b9fd6d58 100644 --- a/doc/source/getting_started/installation.rst +++ b/doc/source/getting_started/installation.rst @@ -77,7 +77,7 @@ For example, on Linux with Python 3.9, unzip the wheelhouse archive and install .. code:: bash - unzip ansys-geometry-core-v0.6.dev0-wheelhouse-Linux-3.9.zip wheelhouse + unzip ansys-geometry-core-v0.7.dev0-wheelhouse-ubuntu-3.9.zip wheelhouse pip install ansys-geometry-core -f wheelhouse --no-index --upgrade --ignore-installed If you are on Windows with Python 3.9, unzip the wheelhouse archive to a wheelhouse directory diff --git a/pyproject.toml b/pyproject.toml index 57e534e592..f319ffb0b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "ansys-geometry-core" -version = "0.6.dev0" +version = "0.7.dev0" description = "A python wrapper for Ansys Geometry service" readme = "README.rst" requires-python = ">=3.9,<4"