Skip to content

Commit 12f2f26

Browse files
committed
fix: PyAnsys ref move (#258)
1 parent a8691d2 commit 12f2f26

File tree

6 files changed

+35
-35
lines changed

6 files changed

+35
-35
lines changed

.github/workflows/ci-build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: PyAnsys Licenses Check
28-
uses: pyansys/actions/check-licenses@main
28+
uses: ansys/actions/check-licenses@main
2929
with:
3030
python-version: ${{ env.MAIN_PYTHON_VERSION }}
3131
target: "all"
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: PyAnsys documentation style checks
38-
uses: pyansys/actions/doc-style@v4
38+
uses: ansys/actions/doc-style@v4
3939
with:
4040
token: ${{ secrets.GITHUB_TOKEN }}
4141

@@ -105,7 +105,7 @@ jobs:
105105

106106
steps:
107107
- name: Build wheelhouse and perform smoke test
108-
uses: pyansys/actions/build-wheelhouse@v4
108+
uses: ansys/actions/build-wheelhouse@v4
109109
with:
110110
library-name: ${{ env.PACKAGE_NAME }}
111111
library-namespace: ${{ env.PACKAGE_NAMESPACE }}
@@ -132,13 +132,13 @@ jobs:
132132

133133
steps:
134134
- name: Build documentation
135-
uses: pyansys/actions/doc-build@v4
135+
uses: ansys/actions/doc-build@v4
136136
with:
137137
python-version: ${{ env.MAIN_PYTHON_VERSION }}
138138
dependencies: "build-essential zip pandoc texlive-latex-extra latexmk texlive-pstricks"
139139

140140
- name: Deploy the latest documentation
141-
uses: pyansys/actions/doc-deploy-dev@v4
141+
uses: ansys/actions/doc-deploy-dev@v4
142142
if: github.ref == 'refs/heads/main'
143143
with:
144144
cname: ${{ env.DOCUMENTATION_CNAME }}
@@ -150,7 +150,7 @@ jobs:
150150
needs: [docs-build, smoke-tests-core]
151151
steps:
152152
- name: Build library source and wheel artifacts
153-
uses: pyansys/actions/build-library@v4
153+
uses: ansys/actions/build-library@v4
154154
with:
155155
library-name: ${{ env.PACKAGE_NAME }}
156156
python-version: ${{ env.MAIN_PYTHON_VERSION }}
@@ -162,14 +162,14 @@ jobs:
162162
runs-on: ubuntu-latest
163163
steps:
164164
- name: Release to PyPI repository
165-
uses: pyansys/actions/release-pypi-public@v4
165+
uses: ansys/actions/release-pypi-public@v4
166166
with:
167167
library-name: ${{ env.PACKAGE_NAME }}
168168
twine-username: __token__
169169
twine-token: ${{ secrets.PYPI_TOKEN }}
170170

171171
- name: Release to GitHub
172-
uses: pyansys/actions/release-github@v4
172+
uses: ansys/actions/release-github@v4
173173
with:
174174
library-name: ${{ env.PACKAGE_NAME }}
175175
additional-artifacts: 'all-deps-Linux-3.8 all-deps-Linux-3.9 all-deps-Linux-3.10 all-deps-Linux-3.11 all-deps-Windows-3.8 all-deps-Windows-3.9 all-deps-Windows-3.10 all-deps-Windows-3.11 all-deps-macOS-3.8 all-deps-macOS-3.9 all-deps-macOS-3.10 all-deps-macOS-3.11'

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ PyAnsys metapackage
1414
:target: https://pypi.org/project/pyansys/
1515
:alt: PyPI
1616

17-
.. |GH-CI| image:: https://github.com/pyansys/pyansys/actions/workflows/ci-build.yml/badge.svg
18-
:target: https://github.com/pyansys/pyansys/actions/workflows/ci-build.yml
17+
.. |GH-CI| image:: https://github.com/ansys/pyansys/actions/workflows/ci-build.yml/badge.svg
18+
:target: https://github.com/ansys/pyansys/actions/workflows/ci-build.yml
1919
:alt: GH-CI
2020

2121
.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
@@ -57,7 +57,7 @@ The ``pyansys`` metapackage ensures compatibility between these PyAnsys packages
5757
- `Shared Components <https://shared.docs.pyansys.com/>`_: Shared Ansys software components to enable package interoperability and minimize maintenance.
5858

5959
Much effort is underway to continue expanding and developing packages in the
60-
`PyAnsys GitHub <https://github.com/pyansys/>`__ account. On the ``Issues`` page
60+
`PyAnsys GitHub <https://github.com/ansys/>`__ account. On the ``Issues`` page
6161
for each package, you can post issues and request new features. You can also feel
6262
free to post a question on the [Ansys Developer Forums](https://discuss.ansys.com/).
6363

@@ -127,7 +127,7 @@ Offline mode installation
127127

128128
If you lack an internet connection on your installation machine, the recommended way of installing
129129
the ``pyansys`` metapackage is downloading the wheelhouse archive from the
130-
`Releases Page <https://github.com/pyansys/pyansys/releases>`_ for your corresponding machine architecture.
130+
`Releases Page <https://github.com/ansys/pyansys/releases>`_ for your corresponding machine architecture.
131131

132132
Each wheelhouse archive contains all the Python wheels necessary to install the ``pyansys`` metapackage from
133133
scratch on Windows, Linux, and MacOS from Python 3.8 to 3.11. You can install this on an isolated system with

doc/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
]
2727

2828
html_context = {
29-
"github_user": "pyansys",
29+
"github_user": "ansys",
3030
"github_repo": "pyansys",
3131
"github_version": "main",
3232
"doc_path": "doc/source",
3333
}
3434

3535
html_theme_options = {
36-
"github_url": "https://github.com/pyansys",
36+
"github_url": "https://github.com/ansys",
3737
"show_prev_next": False,
3838
"show_breadcrumbs": True,
3939
# "collapse_navigation": True,
4040
"use_edit_page_button": True,
4141
"icon_links": [
4242
# {
4343
# "name": "Support",
44-
# "url": "https://github.com/pyansys/pymapdl/discussions",
44+
# "url": "https://github.com/ansys/pyansys/discussions",
4545
# "icon": "fa fa-comment fa-fw",
4646
# },
4747
{

doc/source/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Offline mode installation
7575
If you lack an internet connection on your installation machine, the
7676
recommended way of installing the ``pyansys`` metapackage is downloading the
7777
wheelhouse archive from the `Releases Page
78-
<https://github.com/pyansys/pyansys/releases>`_ for your corresponding machine
78+
<https://github.com/ansys/pyansys/releases>`_ for your corresponding machine
7979
architecture.
8080

8181
Each wheelhouse archive contains all the Python wheels necessary to install

doc/source/links.rst

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
.. _pyansys_support: [email protected]
44

55
.. #Other projects
6-
.. _dpf_core_gh: https://github.com/pyansys/DPF-Core
7-
.. _dpf_post_gh: https://github.com/pyansys/DPF-Post
6+
.. _dpf_core_gh: https://github.com/ansys/DPF-Core
7+
.. _dpf_post_gh: https://github.com/ansys/DPF-Post
88
.. _dpf_core_docs: https://dpf.docs.pyansys.com/
99
.. _dpf_post_docs: https://post.docs.pyansys.com/
1010
.. _legacy_reader_docs: https://reader.docs.pyansys.com/
11-
.. _example_data_repo: https://github.com/pyansys/example-data
11+
.. _example_data_repo: https://github.com/ansys/example-data
1212

1313
.. #PyAnsys Developer Guide
1414
.. _dev_guide_pyansys: https://dev.docs.pyansys.com/
@@ -37,7 +37,7 @@
3737

3838
.. # TechDemos related
3939
.. _tech_demo_intro: https://ansyshelp.ansys.com/Views/Secured/corp/v212/en/ans_tec/tecintro.html
40-
.. _tech_demo_repo: https://github.com/pyansys/pymapdl-examples
40+
.. _tech_demo_repo: https://github.com/ansys/pymapdl-examples
4141
.. _tech_demos_doc: https://examples.mapdl.docs.pyansys.com/
4242

4343
.. #Ansys internal documentation
@@ -74,31 +74,31 @@
7474
.. #PyMAPDL related
7575
.. _pymapdl_main: pymapdl_docs_
7676
.. _pymapdl_pypi: https://pypi.org/project/ansys-mapdl-core/
77-
.. _pymapdl_releases: https://github.com/pyansys/pymapdl/releases
77+
.. _pymapdl_releases: https://github.com/ansys/pymapdl/releases
7878
.. _pymapdl_run_ubuntu: https://mapdl.docs.pyansys.com/troubleshoot/troubleshoot.html?#ubuntu
79-
.. _pymapdl_issues: https://github.com/pyansys/pymapdl/issues
80-
.. _pymapdl_repo: https://github.com/pyansys/pymapdl
79+
.. _pymapdl_issues: https://github.com/ansys/pymapdl/issues
80+
.. _pymapdl_repo: https://github.com/ansys/pymapdl
8181
.. _pymapdl_docs: https://mapdl.docs.pyansys.com/
8282
.. _pymapdl_dev_docs: https://dev.mapdl.docs.pyansys.com/
83-
.. _pymapdl_discussions: https://github.com/pyansys/PyMAPDL/discussions
83+
.. _pymapdl_discussions: https://github.com/ansys/PyMAPDL/discussions
8484
.. _pymapdl_cheatsheet: ./_assets/Cheat_Sheet_PyMAPDL.pdf
85-
.. _pymapdl_tests: https://github.com/pyansys/pymapdl/tree/main/tests
86-
.. _pymapdl_test_math: https://github.com/pyansys/pymapdl/blob/main/tests/test_math.py
85+
.. _pymapdl_tests: https://github.com/ansys/pymapdl/tree/main/tests
86+
.. _pymapdl_test_math: https://github.com/ansys/pymapdl/blob/main/tests/test_math.py
8787
.. _pymapdl_user_guide_math: https://mapdl.docs.pyansys.com/user_guide/math.html
8888
.. _licensing_guide_pdf: ./_assets/lic_guide.pdf
89-
.. _mapdl_fixture: https://github.com/pyansys/pymapdl/blob/fb5fb8b6201253f1bd56bdabee60a29abee8c7d8/tests/conftest.py#L254
90-
.. _pymapdl_examples: https://github.com/pyansys/pymapdl/tree/main/examples
91-
.. _pymapdl_2d_plate_with_a_hole: https://github.com/pyansys/pymapdl/blob/main/examples/00-mapdl-examples/2d_plate_with_a_hole.py
89+
.. _mapdl_fixture: https://github.com/ansys/pymapdl/blob/fb5fb8b6201253f1bd56bdabee60a29abee8c7d8/tests/conftest.py#L254
90+
.. _pymapdl_examples: https://github.com/ansys/pymapdl/tree/main/examples
91+
.. _pymapdl_2d_plate_with_a_hole: https://github.com/ansys/pymapdl/blob/main/examples/00-mapdl-examples/2d_plate_with_a_hole.py
9292
.. _pymapdl_doc_2d_plate_with_a_hole: https://mapdl.docs.pyansys.com/examples/gallery_examples/00-mapdl-examples/2d_plate_with_a_hole.html
9393
.. _pymapdl_doc_krylov_example: https://dev.mapdl.docs.pyansys.com/examples/extended_examples/Krylov/krylov_example.html
9494
.. _pymapdl_doc_krylov_example_rst: https://raw.githubusercontent.com/pyansys/pymapdl/main/doc/source/examples/extended_examples/Krylov/krylov_example.rst
95-
.. _pymapdl_doc_source: https://github.com/pyansys/pymapdl/tree/main/doc/source
95+
.. _pymapdl_doc_source: https://github.com/ansys/pymapdl/tree/main/doc/source
9696
.. _pymapdl_techdemo_28_rst: https://raw.githubusercontent.com/pyansys/pymapdl-examples/main/doc/source/technology_showcase_examples/techdemo-28/ex_28-tecfricstir.rst
9797
.. _pymapdl_techdemo_28: https://examples.mapdl.docs.pyansys.com/technology_showcase_examples/techdemo-28/ex_28-tecfricstir.html
98-
.. _pymapdl_docker_dir: https://github.com/pyansys/pymapdl/blob/main/docker
99-
.. _pymapdl_docker_compose_base: https://github.com/pyansys/pymapdl/blob/main/docker/docker-compose.yml
100-
.. _pymapdl_docker_compose_local: https://github.com/pyansys/pymapdl/blob/main/docker/docker-compose.local.yml
101-
.. _pymapdl_docker_compose_license_server: https://github.com/pyansys/pymapdl/blob/main/docker/docker-compose.license_server.yml
98+
.. _pymapdl_docker_dir: https://github.com/ansys/pymapdl/blob/main/docker
99+
.. _pymapdl_docker_compose_base: https://github.com/ansys/pymapdl/blob/main/docker/docker-compose.yml
100+
.. _pymapdl_docker_compose_local: https://github.com/ansys/pymapdl/blob/main/docker/docker-compose.local.yml
101+
.. _pymapdl_docker_compose_license_server: https://github.com/ansys/pymapdl/blob/main/docker/docker-compose.license_server.yml
102102

103103
.. #Python
104104
.. _using_venv: https://docs.python.org/3/library/venv.html

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ doc = [
6767
]
6868

6969
[project.urls]
70-
Source = "https://github.com/pyansys/pyansys"
70+
Source = "https://github.com/ansys/pyansys"
7171
Documentation = "https://docs.pyansys.com"
7272

7373
[tool.flit.module]

0 commit comments

Comments
 (0)