From 6b01cc100ae23eeed73330a67cb82560172bab25 Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Fri, 8 Sep 2023 16:19:47 +0200 Subject: [PATCH 1/2] MAINT: Bump version to v0.4.dev0 (#699) --- README.rst | 2 +- doc/source/getting_started/installation.rst | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index cec45a02ca..a8595e7bce 100644 --- a/README.rst +++ b/README.rst @@ -250,7 +250,7 @@ For example, on Linux with Python 3.8, unzip the wheelhouse archive and install .. code:: bash - unzip ansys-geometry-core-v0.3.dev0-wheelhouse-Linux-3.8.zip wheelhouse + unzip ansys-geometry-core-v0.4.dev0-wheelhouse-Linux-3.8.zip wheelhouse pip install ansys-geometry-core -f wheelhouse --no-index --upgrade --ignore-installed If you're on Windows with Python 3.9, unzip to a wheelhouse directory and install using the preceding command. diff --git a/doc/source/getting_started/installation.rst b/doc/source/getting_started/installation.rst index 1bc4d279d5..0a82f015ad 100644 --- a/doc/source/getting_started/installation.rst +++ b/doc/source/getting_started/installation.rst @@ -88,7 +88,7 @@ For example, on Linux with Python 3.8, unzip the wheelhouse archive and install .. code:: bash - unzip ansys-geometry-core-v0.3.dev0-wheelhouse-Linux-3.8.zip wheelhouse + unzip ansys-geometry-core-v0.4.dev0-wheelhouse-Linux-3.8.zip wheelhouse pip install ansys-geometry-core -f wheelhouse --no-index --upgrade --ignore-installed If you're on Windows with Python 3.9, unzip the wheelhouse archive to a wheelhouse directory diff --git a/pyproject.toml b/pyproject.toml index ab5a086e68..dd71e9872f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "ansys-geometry-core" -version = "0.3.dev0" +version = "0.4.dev0" description = "A python wrapper for Ansys Geometry service" readme = "README.rst" requires-python = ">=3.8,<4" From 500d99eb68236e67fb904ff07e8702b90f9f0a4c Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Fri, 8 Sep 2023 16:44:04 +0200 Subject: [PATCH 2/2] fix: remove specific branch from deps (#700) --- .github/workflows/ci_cd.yml | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index c3f6027a86..1c43c4a92d 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -213,6 +213,9 @@ jobs: python -m pip install --upgrade pip pip install --upgrade build wheel pip install .[doc] + # TODO - To be removed once it is published + pip uninstall sphinx-autoapi + pip install "sphinx-autoapi @ git+https://github.com/jorgepiloto/sphinx-autoapi@feat/single-page-option" - name: Login to GitHub Container Registry uses: docker/login-action@v2 diff --git a/pyproject.toml b/pyproject.toml index dd71e9872f..b010ed4785 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -84,7 +84,7 @@ doc = [ "pyvista[trame]==0.42.1", "requests==2.31.0", "sphinx==7.2.5", - "sphinx-autoapi @ git+https://github.com/jorgepiloto/sphinx-autoapi@feat/single-page-option", + "sphinx-autoapi==2.1.1", # "sphinx-autoapi @ git+https://github.com/jorgepiloto/sphinx-autoapi@feat/single-page-option", ---> Installed directly in workflow "sphinx-autodoc-typehints==1.24.0", "sphinx-copybutton==0.5.2", "sphinx_design==0.5.0",