Skip to content

Commit

Permalink
fix: rename the module
Browse files Browse the repository at this point in the history
  • Loading branch information
Revathyvenugopal162 committed Dec 19, 2023
1 parent b33ed3e commit ef9059f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 19 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ env:
MAIN_PYTHON_VERSION: '3.10'
DOCUMENTATION_CNAME: 'simai.docs.pyansys.com'
LIBRARY_NAME: 'ansys-simai-core'
LIBRARY_NAMESPACE: 'ansys.simai.core'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,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/simai/pulls?q=label%3Abug+)
- [documentation](https://github.com/ansys/simai/pulls?q=label%3Adocumentation+)
- [enhancement](https://github.com/ansys/simai/pulls?q=label%3Aenhancement+)
- [good first issue](https://github.com/ansys/simai/pulls?q=label%3Agood+first+issue)
- [maintenance](https://github.com/ansys/simai/pulls?q=label%3Amaintenance+)
- [release](https://github.com/ansys/simai/pulls?q=label%3Arelease+)
- [bug](https://github.com/ansys/pysimai/pulls?q=label%3Abug+)
- [documentation](https://github.com/ansys/pysimai/pulls?q=label%3Adocumentation+)
- [enhancement](https://github.com/ansys/pysimai/pulls?q=label%3Aenhancement+)
- [good first issue](https://github.com/ansys/pysimai/pulls?q=label%3Agood+first+issue)
- [maintenance](https://github.com/ansys/pysimai/pulls?q=label%3Amaintenance+)
- [release](https://github.com/ansys/pysimai/pulls?q=label%3Arelease+)
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ Pysimai simai
:target: https://pypi.org/project/simai
:alt: PyPI

.. |codecov| image:: https://codecov.io/gh/ansys/simai/branch/main/graph/badge.svg
:target: https://codecov.io/gh/ansys/simai
.. |codecov| image:: https://codecov.io/gh/ansys/pysimai/branch/main/graph/badge.svg
:target: https://codecov.io/gh/ansys/pysimai
:alt: Codecov

.. |GH-CI| image:: https://github.com/ansys/simai/actions/workflows/ci_cd.yml/badge.svg
:target: https://github.com/ansys/simai/actions/workflows/ci_cd.yml
.. |GH-CI| image:: https://github.com/ansys/pysimai/actions/workflows/ci_cd.yml/badge.svg
:target: https://github.com/ansys/pysimai/actions/workflows/ci_cd.yml
:alt: GH-CI

.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
Expand Down Expand Up @@ -53,7 +53,7 @@ Then, you can simply execute:

.. code:: bash
python -m pip install ansys-simai-core
python -m pip install ansys-pysimai-core
For developers
^^^^^^^^^^^^^^
Expand All @@ -68,7 +68,7 @@ need to follow these steps:

.. code:: bash
git clone https://github.com/ansys/simai
git clone https://github.com/ansys/pysimai
#. Create a fresh-clean Python environment and activate it:

Expand Down Expand Up @@ -100,7 +100,7 @@ need to follow these steps:

.. code:: bash
python -m pip install --editable ansys-simai-core
python -m pip install --editable ansys-pysimai-core
#. Finally, verify your development installation by running:

Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from ansys.simai.core import __version__

# Project information
project = "ansys-simai-core"
project = "ansys-pysimai-core"
copyright = f"(c) {datetime.now().year} ANSYS, Inc. All rights reserved"
author = "ANSYS, Inc."
release = version = __version__
Expand All @@ -21,7 +21,7 @@

# specify the location of your github repo
html_theme_options = {
"github_url": "https://github.com/ansys/simai",
"github_url": "https://github.com/ansys/pysimai",
"show_prev_next": False,
"show_breadcrumbs": True,
"additional_breadcrumbs": [
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ doc = [
name = "ansys.simai.core"

[project.urls]
Source = "https://github.com/ansys/simai"
Tracker = "https://github.com/ansys/simai/issues"
Homepage = "https://github.com/ansys/simai"
Source = "https://github.com/ansys/pysimai"
Tracker = "https://github.com/ansys/pysimai/issues"
Homepage = "https://github.com/ansys/pysimai"


[tool.black]
Expand Down

0 comments on commit ef9059f

Please sign in to comment.