Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,15 +191,15 @@ jobs:
- name: Display package file list
run: ls -R

# - name: Upload to Private PyPi
# run: |
# pip install twine
# python -m twine upload --skip-existing ./**/*.whl
# python -m twine upload --skip-existing ./**/*.tar.gz
# env:
# TWINE_USERNAME: PAT
# TWINE_PASSWORD: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}
# TWINE_REPOSITORY_URL: https://pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/upload
- name: Upload to Private PyPi
run: |
pip install twine
python -m twine upload --skip-existing ./**/*.whl
python -m twine upload --skip-existing ./**/*.tar.gz
env:
TWINE_USERNAME: PAT
TWINE_PASSWORD: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}
TWINE_REPOSITORY_URL: https://pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/upload

- name: Upload to Public PyPi
run: |
Expand Down
14 changes: 13 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,25 @@ Installation
The ``ansys-fluent-visualization`` package currently supports Python 3.7 through Python
3.10 on Windows and Linux.

If you want to use PyFluent visualization please install the latest from `PyFluent Visualization GitHub
If you're using Python 3.10, install the vtk package from .whl file
`here in Windows <https://github.com/pyvista/pyvista-wheels/raw/main/vtk-9.1.0.dev0-cp310-cp310-win_amd64.whl>`_ or
`here in Linux <https://github.com/pyvista/pyvista-wheels/raw/main/vtk-9.1.0.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl>`_.

Install the latest release from `PyPI
<https://pypi.org/project/ansys-fluent-visualization/>`_ with:

.. code:: console

pip install ansys-fluent-visualization

Alternatively, install the latest from `pyfluent-visualization GitHub
<https://github.com/pyansys/pyfluent-visualization>`_ via:

.. code:: console

pip install git+https://github.com/pyansys/pyfluent-visualization.git


If you plan on doing local "development" of PyFluent with Git, then install
with:

Expand Down
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@ packages = [
python = ">=3.7,<4.0"
importlib-metadata = {version = "^4.0", python = "<3.8"}
ansys-fluent-core = "~=0.10"
vtk = [
{ url = "https://github.com/pyvista/pyvista-wheels/raw/main/vtk-9.1.0.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl" , markers = "python_version > '3.9' and sys_platform == 'linux'"},
{ url = "https://github.com/pyvista/pyvista-wheels/raw/main/vtk-9.1.0.dev0-cp310-cp310-win_amd64.whl" , markers = "python_version > '3.9' and sys_platform != 'linux'"},
{ version = "9.1.0", python = "<=3.9" },
]
vtk = {version = "9.1.0", python = "<=3.9"}
ipyvtklink = ">=0.2.2"
pyvista = ">=0.33.2"
pyvistaqt = ">=0.7.0"
Expand Down