diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 159b79cf7..f8e93fdb8 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -29,21 +29,6 @@ permissions: jobs: - style: - name: Code style - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ env.MAIN_PYTHON_VERSION }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools tox - - name: Test with tox - run: tox -e style - doc-style: name: Documentation Style Check runs-on: ubuntu-latest @@ -109,7 +94,6 @@ jobs: smoke-tests: name: Build and Smoke tests runs-on: ${{ matrix.os }} - needs: [style] strategy: fail-fast: false matrix: @@ -226,12 +210,12 @@ jobs: needs: [package] runs-on: ubuntu-latest steps: - - name: Release to the private PyPI repository - uses: ansys/actions/release-pypi-private@v5 + - name: Release to the public PyPI repository + uses: ansys/actions/release-pypi-public@v5 with: library-name: ${{ env.PACKAGE_NAME }} twine-username: "__token__" - twine-token: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }} + twine-token: ${{ secrets.PYPI_TOKEN }} - name: Release to GitHub uses: ansys/actions/release-github@v5 diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index dbef211c9..2ac3d19c3 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -76,9 +76,9 @@ jobs: issue-number: ${{ github.event.pull_request.number }} body: | Please add one of the following labels to add this contribution to the Release Notes :point_down: - - [bug]([https://github.com/ansys-internal/pyhps/pulls?q=label%3Abug+) - - [documentation]([https://github.com/ansys-internal/pyhps/pulls?q=label%3Adocumentation+) - - [enhancement]([https://github.com/ansys-internal/pyhps/pulls?q=label%3Aenhancement+) - - [good first issue]([https://github.com/ansys-internal/pyhps/pulls?q=label%3Agood+first+issue) - - [maintenance]([https://github.com/ansys-internal/pyhps/pulls?q=label%3Amaintenance+) - - [release]([https://github.com/ansys-internal/pyhps/pulls?q=label%3Arelease+) + - [bug]([https://github.com/ansys/pyhps/pulls?q=label%3Abug+) + - [documentation]([https://github.com/ansys/pyhps/pulls?q=label%3Adocumentation+) + - [enhancement]([https://github.com/ansys/pyhps/pulls?q=label%3Aenhancement+) + - [good first issue]([https://github.com/ansys/pyhps/pulls?q=label%3Agood+first+issue) + - [maintenance]([https://github.com/ansys/pyhps/pulls?q=label%3Amaintenance+) + - [release]([https://github.com/ansys/pyhps/pulls?q=label%3Arelease+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f9d1201c..189ab8aa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## [0.5.0](https://github.com/ansys-internal/pyhps/releases/tag/v0.5.0) - December 14 2023 +## [0.5.0](https://github.com/ansys/pyhps/releases/tag/v0.5.0) - December 14 2023 ### Added * Expose the resource management service (RMS) API by @FedericoNegri in #247 @@ -17,7 +17,7 @@ ### Dependencies * Bump datamodel-code-generator from 0.24.1 to 0.25.1 in /requirements by @dependabot in #249 -## [0.4.0](https://github.com/ansys-internal/pyhps/releases/tag/v0.4.0) - November 17 2023 +## [0.4.0](https://github.com/ansys/pyhps/releases/tag/v0.4.0) - November 17 2023 ### Added * Add HPC resources by @wehrler in #186 @@ -42,7 +42,7 @@ * Bump pytest from 7.3.2 to 7.4.3 in /requirements by @dependabot in #192, #232 * Bump docs requirements by @FedericoNegri in #245 -## [0.3.0](https://github.com/ansys-internal/pyhps/releases/tag/v0.3.0) - June 29 2023 +## [0.3.0](https://github.com/ansys/pyhps/releases/tag/v0.3.0) - June 29 2023 ### Added * Add build_info to evaluator's schema by @FedericoNegri in #190 @@ -58,7 +58,7 @@ * Bump ``pytest`` from 7.3.1 to 7.3.2 in /requirements by @dependabot in #188 * Bump ``pytest-cov`` from 4.0.0 to 4.1.0 in /requirements by @dependabot in #183 -## [0.2.0](https://github.com/ansys-internal/pyhps/releases/tag/v0.2.0) - June 6 2023 +## [0.2.0](https://github.com/ansys/pyhps/releases/tag/v0.2.0) - June 6 2023 ### Added * Objects copy by @FedericoNegri in #181 @@ -73,7 +73,7 @@ * Adjust schemas to match jms and evaluator by @wehrler in #182 * Remove file storage from project schema by @wehrler in #160 -## [0.1.0](https://github.com/ansys-internal/pyhps/releases/tag/v0.1.0) - May 9 2023 +## [0.1.0](https://github.com/ansys/pyhps/releases/tag/v0.1.0) - May 9 2023 ### Added diff --git a/README.rst b/README.rst index 0dc56268c..b545c80c7 100644 --- a/README.rst +++ b/README.rst @@ -14,12 +14,12 @@ PyHPS :target: https://pypi.org/project/ansys-hps-client :alt: PyPI -.. |codecov| image:: https://codecov.io/gh/ansys-internal/pyhps/branch/main/graph/badge.svg - :target: https://codecov.io/gh/ansys-internal/ansys-hps-client +.. |codecov| image:: https://codecov.io/gh/ansys/pyhps/branch/main/graph/badge.svg + :target: https://codecov.io/gh/ansys/ansys-hps-client :alt: Codecov -.. |GH-CI| image:: https://github.com/ansys-internal/pyhps/actions/workflows/ci_cd.yml/badge.svg - :target: https://github.com/ansys-internal/pyhps/actions/workflows/ci_cd.yml +.. |GH-CI| image:: https://github.com/ansys/pyhps/actions/workflows/ci_cd.yml/badge.svg + :target: https://github.com/ansys/pyhps/actions/workflows/ci_cd.yml :alt: GH-CI .. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg @@ -68,9 +68,9 @@ The PyHPS documentation contains these sections: - `Contribute `_: Provides information on how to install PyHPS in developer mode and make contributions to the codebase and documentation. -On the `PyHPS Issues `_ page, you can +On the `PyHPS Issues `_ page, you can create issues to report bugs and request new features. On the -`PyHPS Discussions `_ page or the +`PyHPS Discussions `_ page or the `Discussions `_ page on the Ansys Developer portal, you can post questions, share ideas, and get community feedback. diff --git a/doc/source/conf.py b/doc/source/conf.py index 4c39b1c3c..9c8a5bc12 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -163,7 +163,7 @@ def prepare_jinja_env(jinja_env) -> None: # only for sphinx_rtd_theme html_theme_options = { - "github_url": "https://github.com/ansys-internal/pyhps", + "github_url": "https://github.com/ansys/pyhps", "show_prev_next": False, "show_breadcrumbs": True, "additional_breadcrumbs": [ diff --git a/doc/source/contribute.rst b/doc/source/contribute.rst index a9cbcf4b5..4e1b6bcaa 100644 --- a/doc/source/contribute.rst +++ b/doc/source/contribute.rst @@ -21,7 +21,7 @@ Installing PyHPS in developer mode allows you to modify and enhance the source: .. code:: bash - git clone https://github.com/ansys-internal/pyhps + git clone https://github.com/ansys/pyhps #. Access the directory where you have cloned the repository: @@ -167,12 +167,12 @@ data model generator with this command: Post issues ----------- -Use the `PyHPS Issues `_ +Use the `PyHPS Issues `_ page to report bugs and request new features. When possible, use the issue templates provided. If your issue does not fit into one of these templates, click the link for opening a blank issue. -On the `PyHPS Discussions `_ page +On the `PyHPS Discussions `_ page or the `Discussions `_ page on the Ansys Developer portal, you can post questions, share ideas, and get community feedback. diff --git a/pyproject.toml b/pyproject.toml index 1325d1615..c1bae47db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,9 +65,9 @@ build = [ [project.urls] Documentation = "https://hps.docs.pyansys.com" -Source = "https://github.com/ansys-internal/pyhps" -Homepage = "https://github.com/ansys-internal/pyhps" -Tracker = "https://github.com/ansys-internal/pyhps/issues" +Source = "https://github.com/ansys/pyhps" +Homepage = "https://github.com/ansys/pyhps" +Tracker = "https://github.com/ansys/pyhps/issues" [tool.flit.module] name = "ansys.hps.client"