-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
37 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,3 +74,4 @@ doc/_build | |
# TIFF files | ||
*.tiff | ||
_test_enhanced_images.py | ||
test_adr_sls.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ To reach the project support team, email `[email protected] <pyansys.core@a | |
|
||
Installation | ||
------------ | ||
The ``pydynamicreporting`` package supports Python 3.9 through 3.12 on | ||
The ``pydynamicreporting`` package supports Python 3.10 through 3.12 on | ||
Windows and Linux. It is currently available on the PyPi | ||
`repository <https://pypi.org/project/ansys-dynamicreporting-core/>`_. | ||
|
||
|
@@ -76,17 +76,6 @@ To install the package, simply run | |
pip install ansys-dynamicreporting-core | ||
Alternatively, the user can download the repository and locally build the | ||
package. Two modes of installation are available: | ||
|
||
- Developer installation | ||
- User installation | ||
|
||
|
||
The code provided for both installation modes use a `virtual environment | ||
<https://docs.python.org/3/library/venv.html>`_. | ||
|
||
Developer installation | ||
^^^^^^^^^^^^^^^^^^^^^^ | ||
To clone and install the ``pydynamicreporting`` package in development mode, | ||
|
@@ -101,16 +90,15 @@ run this code: | |
source venv/bin/activate # (.\venv\Scripts\activate for Windows shell) | ||
make install-dev # install pydynamicreporting in editable mode | ||
The preceding code creates an "editable" installation that lets you develop and test | ||
PyDynamicReporting at the same time. | ||
|
||
User installation | ||
^^^^^^^^^^^^^^^^^ | ||
To build and create a production-like installation: | ||
To build and create a production-like installation, first install | ||
`chocolatey <https://chocolatey.org/install>`_. Then: | ||
|
||
.. code:: | ||
choco install make # install make | ||
make clean # clean | ||
make build # build | ||
# this replaces the editable installation done previously. If you don't want to replace, | ||
|
@@ -119,12 +107,15 @@ To build and create a production-like installation: | |
# you can skip the steps above and just do 'make all' | ||
make smoketest # test import | ||
Local GitHub Actions | ||
^^^^^^^^^^^^^^^^^^^^ | ||
To run GitHub Actions on your local desktop (recommended), install the | ||
`act <https://github.com/nektos/act#readme>`_ package. | ||
|
||
.. code:: | ||
choco install act-cli | ||
To run a job, such as the ``style`` job from the ``ci_cd.yml`` file, use | ||
this command, where ``style`` is the job name: | ||
|
||
|
@@ -142,6 +133,9 @@ Dependencies | |
To use PyDynamicReporting, you must have a locally installed and licensed copy | ||
of Ansys 2023 R2 or later. | ||
|
||
To use PyDynamicReporting Serverless (ansys.dynamicreporting.core.serverless), | ||
you must have a locally installed and licensed copy of Ansys 2025 R1 or later. | ||
|
||
Basic usage | ||
----------- | ||
This code shows how to start the simplest PyDynamicReporting session: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ requires = [ | |
|
||
[project] | ||
name = "ansys-dynamicreporting-core" | ||
version = "0.8.0.dev0" | ||
version = "0.9.0.dev0" | ||
authors = [ | ||
{name = "ANSYS, Inc.", email = "[email protected]"}, | ||
] | ||
|
@@ -20,7 +20,7 @@ maintainers = [ | |
] | ||
description = "Python interface to Ansys Dynamic Reporting" | ||
readme = "README.rst" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.10" | ||
keywords = ["dynamicreporting", "pydynamicreporting", "pyansys", "ansys"] | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
|
@@ -29,7 +29,6 @@ classifiers = [ | |
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
|