Skip to content

Commit

Permalink
Merge branch 'hotfix-3.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
camUrban committed Jul 10, 2023
2 parents d60a060 + 09a1df7 commit 76cac76
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ examples of the output you can expect to receive from each of them.

Here are the requirements necessary to run Ptera Software:

* matplotlib >= 3.7.1, < 4.0.0
* numpy >= 1.24.3, < 1.25.0
* pyvista >= 0.39.1, < 1.0.0
* matplotlib >= 3.7.2, < 4.0.0
* numpy >= 1.24.4, < 1.25.0
* pyvista >= 0.40.0, < 1.0.0
* scipy >= 1.10.1, < 2.0.0
* numba >= 0.57.1, < 1.0.0
* cmocean >= 3.0.3, < 4.0.0
Expand All @@ -240,7 +240,7 @@ Additionally, these packages are useful for continued development of the softwar
* pre-commit >= 3.3.3, < 4.0.0
* build >= 0.10.0, < 1.0.0
* twine >= 4.0.2, < 5.0.0
* PyInstaller >= 5.12.0, < 6.0.0
* PyInstaller >= 5.13.0, < 6.0.0
* setuptools >= 68.0.0, < 69.0.0
* wheel >= 0.40.0, < 1.0.0

Expand Down
2 changes: 1 addition & 1 deletion make_installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "PteraSoftware"
#define MyAppVersion "3.0.0"
#define MyAppVersion "3.0.1"
#define MyAppPublisher "CamUrban"
#define MyAppURL "https://github.com/camUrban/PteraSoftware"
#define MyAppExeName "PteraSoftware.exe"
Expand Down
8 changes: 4 additions & 4 deletions pterasoftware/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -946,13 +946,13 @@ def print_unsteady_results(unsteady_solver):
This is the solver object with the results to be printed.
:return: None
"""
forces = unsteady_solver.unsteady_problem.final_total_near_field_forces_wind_axes
moments = unsteady_solver.unsteady_problem.final_total_near_field_moments_wind_axes
forces = unsteady_solver.unsteady_problem.final_mean_near_field_forces_wind_axes
moments = unsteady_solver.unsteady_problem.final_mean_near_field_moments_wind_axes
force_coefficients = (
unsteady_solver.unsteady_problem.final_total_near_field_force_coefficients_wind_axes
unsteady_solver.unsteady_problem.final_mean_near_field_force_coefficients_wind_axes
)
moment_coefficients = (
unsteady_solver.unsteady_problem.final_total_near_field_moment_coefficients_wind_axes
unsteady_solver.unsteady_problem.final_mean_near_field_moment_coefficients_wind_axes
)

# For each airplane object, calculate and print the average force, moment,
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
matplotlib >= 3.7.1, < 4.0.0
numpy >= 1.24.3, < 1.25.0
pyvista >= 0.39.1, < 1.0.0
matplotlib >= 3.7.2, < 4.0.0
numpy >= 1.24.4, < 1.25.0
pyvista >= 0.40.0, < 1.0.0
scipy >= 1.10.1, < 2.0.0
numba >= 0.57.1, < 1.0.0
cmocean >= 3.0.3, < 4.0.0
Expand Down
8 changes: 4 additions & 4 deletions requirements_ci.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
matplotlib >= 3.7.1, < 4.0.0
numpy >= 1.24.3, < 1.25.0
pyvista >= 0.39.1, < 1.0.0
matplotlib >= 3.7.2, < 4.0.0
numpy >= 1.24.4, < 1.25.0
pyvista >= 0.40.0, < 1.0.0
scipy >= 1.10.1, < 2.0.0
numba >= 0.57.1, < 1.0.0
cmocean >= 3.0.3, < 4.0.0
tqdm >= 4.65.0, < 5.0.0
webp >= 0.1.6, < 1.0.0
codecov >= 2.1.13, < 3.0.0
urllib3 >= 1.26.16, < 2.0.0
urllib3 >= 1.26.16, < 2.0.0
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ black >= 23.3.0, < 24.0.0
pre-commit >= 3.3.3, < 4.0.0
build >= 0.10.0, < 1.0.0
twine >= 4.0.2, < 5.0.0
PyInstaller >= 5.12.0, < 6.0.0
PyInstaller >= 5.13.0, < 6.0.0
setuptools >= 68.0.0, < 69.0.0
wheel >= 0.40.0, < 1.0.0
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = PteraSoftware
version = 3.0.0
version = 3.0.1
author = Cameron Urban
author_email = [email protected]
license = MIT
Expand Down Expand Up @@ -47,9 +47,9 @@ packages =
include_package_data = True
python_requires = >= 3.8.0, < 3.9.0
install_requires =
matplotlib >= 3.7.1, < 4.0.0
numpy >= 1.24.3, < 1.25.0
pyvista >= 0.39.1, < 1.0.0
matplotlib >= 3.7.2, < 4.0.0
numpy >= 1.24.4, < 1.25.0
pyvista >= 0.40.0, < 1.0.0
scipy >= 1.10.1, < 2.0.0
numba >= 0.57.1, < 1.0.0
cmocean >= 3.0.3, < 4.0.0
Expand Down

0 comments on commit 76cac76

Please sign in to comment.