Skip to content

Commit 264915d

Browse files
committed
Merge branch 'main' into release/0.1
2 parents 4b5dc8b + 344a512 commit 264915d

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/autodoc_cicd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
token: ${{ secrets.MAPDL_CMD_DOC_TOKEN }}
4949
path: mapdl-cmd-doc
5050

51-
- name: "Install pydita_ast"
51+
- name: "Install pydita-ast"
5252
run: |
5353
pip install --upgrade pip
5454
pip install .[doc]

.github/workflows/ci_cd.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
env:
1717
MAIN_PYTHON_VERSION: '3.10'
18-
PACKAGE_NAME: 'pydita_ast'
18+
PACKAGE_NAME: 'pydita-ast'
1919
PACKAGE_NAMESPACE: 'pydita_ast'
2020
DOCUMENTATION_CNAME: 'pydita-ast.docs.pyansys.com'
2121
RESET_PIP_CACHE: 0
@@ -170,7 +170,7 @@ jobs:
170170
restore-keys: |
171171
Python-pydita_ast-v${{ env.RESET_PIP_CACHE }}-${{ env.MAIN_PYTHON_VERSION }}
172172
173-
- name: "Install pydita_ast"
173+
- name: "Install pydita-ast"
174174
run: |
175175
pip install --upgrade pip
176176
pip install .[doc]
@@ -232,7 +232,7 @@ jobs:
232232

233233

234234
release:
235-
name: "Release project to private PyPI and GitHub"
235+
name: "Release project to public PyPI and GitHub"
236236
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
237237
needs: [package, smoke-tests-macos-windows]
238238
runs-on: ubuntu-latest

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Install the ``pydita-ast`` package with:
4848

4949
.. code:: bash
5050
51-
python -m pip install pydita_ast
51+
python -m pip install pydita-ast
5252
5353
5454
It is recommended to organize the XML documentation as follow:

doc/source/conf.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from pydita_ast import __version__
77

88
# Project information
9-
project = "pydita_ast"
9+
project = "pydita-ast"
1010
copyright = f"(c) {datetime.now().year} ANSYS, Inc. All rights reserved"
1111
author = "ANSYS, Inc."
1212
release = version = __version__
@@ -42,10 +42,10 @@
4242
"icon": "fa fa-comment fa-fw",
4343
},
4444
],
45-
# "switcher": {
46-
# "json_url": f"https://{cname}/versions.json",
47-
# "version_match": switcher_version,
48-
# },
45+
"switcher": {
46+
"json_url": f"https://{cname}/versions.json",
47+
"version_match": switcher_version,
48+
},
4949
}
5050

5151
html_context = {

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
7-
name = "pydita_ast"
8-
version = "0.1.dev0"
7+
name = "pydita-ast"
8+
version = "0.1.dev"
99
description = "PyDita AST converter."
1010
readme = "README.rst"
1111
requires-python = ">=3.8"

0 commit comments

Comments
 (0)