Skip to content

Commit

Permalink
Merge branch 'main' into feat/improving-components-api
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 authored Nov 6, 2023
2 parents 9480ddf + 14f5461 commit 4814c09
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ Install the latest release from `PyPi
pip install ansys-mapdl-core
If you are planning to use PyMAPDL together with `Jupyter lab <https://jupyter.org/>`_,
you can install both in one step:

.. code:: console
pip install 'ansys-mapdl-core[jupyter]'
Alternatively, install the latest from `PyMAPDL GitHub
<https://github.com/ansys/pymapdl/issues>`_ via:

Expand Down
2 changes: 1 addition & 1 deletion doc/.vale.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ TokenIgnores = (:(func|class|meth|attr|py):`(?:.|\n)*?`)|(<.*>)

# Removing Google-specific rule - Not applicable under some circumstances
Google.Colons = NO
Google.Headings = NO
Google.Headings = NO
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "ansys-mapdl-core"
version = "0.68.dev0"
description = "A Python wrapper for Ansys MAPDL."
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.8,<3.12"
license = {file = "LICENSE"}
authors = [
{name = "Ansys, Inc.", email = "[email protected]"},
Expand Down Expand Up @@ -55,6 +55,12 @@ classifiers = [
]

[project.optional-dependencies]
jupyter = [
"jupyterlab>=3",
"ipywidgets",
"pyvista[jupyter]",
]

tests = [
"ansys-dpf-core==0.10.0",
"autopep8==2.0.4",
Expand Down

0 comments on commit 4814c09

Please sign in to comment.