Skip to content

Commit

Permalink
Update v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuelopez-ansys committed May 8, 2024
2 parents a38b95b + c45547f commit 3f735be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ jobs:
- name: Install CI related dependencies
run: |
.venv\Scripts\Activate.ps1
pip install --extra-index-url https://wheels.vtk.org .[ci]
pip install --extra-index-url https://wheels.vtk.org vtk-osmesa==9.2.20230527.dev0
pip install "pypandoc-binary>=1.10.0,<1.14"
- name: Retrieve common toolkit version
run: |
Expand Down
12 changes: 4 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,28 @@ classifiers = [
dependencies = [
"build==1.2.1",
"twine==5.0.0",
"pyaedt>=0.8.0,<0.9",
"pyaedt>=0.8.0,<0.10",
"pydantic",
"tomli; python_version < '3.12'",
]

[project.optional-dependencies]
all = [
"pyaedt[all]>=0.8.0,<0.9",
"pyaedt[all]>=0.8.0,<0.10",
"flask",
"PySide6-Essentials",
"pyqtgraph",
"qdarkstyle",
"pyvistaqt",
]
tests = [
"pyaedt[all]>=0.8.0,<0.9",
"pyaedt[all]>=0.8.0,<0.10",
"flask",
"pytest>=7.4.0,<8.3",
"pytest-cov>=4.0.0,<5.1",
]
doc = [
"pyaedt[all]>=0.8.0,<0.9",
"pyaedt[all]>=0.8.0,<0.10",
"recommonmark>=0.7.0,<0.8",
"PySide6-Essentials",
"ansys-sphinx-theme>=0.10.0,<0.16",
Expand All @@ -63,10 +63,6 @@ doc = [
"jupyterlab>=4.0.0,<4.3",
"pypandoc>=1.10.0,<1.14",
]
ci = [
"pypandoc-binary>=1.10.0,<1.14",
"vtk-osmesa==9.2.20230527.dev0",
]

[tool.flit.module]
name = "ansys.aedt.toolkits.common"
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/aedt/toolkits/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def process_desktop_properties(is_linux, url_call):
grpc = desktop_version > "2023.2" or is_linux
if "PYAEDT_STUDENT_VERSION" in os.environ:
is_student = os.environ["PYAEDT_STUDENT_VERSION"]
if is_student:
if is_student == "True":
desktop_version += " STUDENT"

elif len(sys.argv) == 3:
Expand Down

0 comments on commit 3f735be

Please sign in to comment.