Skip to content

Commit

Permalink
Merge pull request #724 from RocketPy-Team/rel/v1.6.2
Browse files Browse the repository at this point in the history
REL: rocketpy v1.6.2
  • Loading branch information
Gui-FernandesBR authored Nov 8, 2024
2 parents f10f406 + 0116b0d commit 04c59ee
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 15 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,25 @@ Attention: The newest changes should be on top -->

### Added

- ENH: add structural to total mass ratio for motor and rocket [#713](https://github.com/RocketPy-Team/RocketPy/pull/713)
-

### Changed

-

### Fixed

-

## [v1.6.2] - 2024-11-08

### Added

- ENH: add structural to total mass ratio for motor and rocket [#713](https://github.com/RocketPy-Team/RocketPy/pull/713)

### Changed

- REL: bumps up rocketpy version to v1.6.2 [#724](https://github.com/RocketPy-Team/RocketPy/pull/724)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author = "RocketPy Team"

# The full version, including alpha/beta/rc tags
release = "1.6.1"
release = "1.6.2"


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/user/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you want to choose a specific version to guarantee compatibility, you may ins

.. code-block:: shell
pip install rocketpy==1.6.1
pip install rocketpy==1.6.2
Optional Installation Method: ``conda``
Expand Down Expand Up @@ -114,7 +114,7 @@ The packages needed can be installed via ``pip`` by running the following lines

.. code-block:: shell
pip install "numpy>=1.13"
pip install "numpy>=1.13"
pip install "scipy>=1.0"
pip install "matplotlib>=3.0"
pip install "netCDF4>=1.6.4"
Expand Down Expand Up @@ -158,7 +158,7 @@ Alternatively, you can instal all extra packages by running the following line i
.. code-block:: shell
pip install rocketpy[all]
Useful Packages
^^^^^^^^^^^^^^^
Expand Down
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "rocketpy"
version = "1.6.1"
version = "1.6.2"
description="Advanced 6-DOF trajectory simulation for High-Power Rocketry."
dynamic = ["dependencies"]
readme = "README.md"
Expand Down Expand Up @@ -30,8 +30,8 @@ packages = { find = { where = ["."], include = ["rocketpy*"] } }
dependencies = { file = ["requirements.txt"] }

[project.optional-dependencies]
tests = [
"pytest",
tests = [
"pytest",
"pytest-coverage",
"black[jupyter]",
"flake8-black",
Expand All @@ -42,12 +42,12 @@ tests = [
"isort"
]

env-analysis = [
"windrose>=1.6.8",
"timezonefinder",
"jsonpickle",
"ipython",
"ipywidgets>=7.6.3"
env-analysis = [
"windrose>=1.6.8",
"timezonefinder",
"jsonpickle",
"ipython",
"ipywidgets>=7.6.3"
]

monte-carlo = [
Expand All @@ -59,7 +59,7 @@ monte-carlo = [
all = ["rocketpy[env-analysis]", "rocketpy[monte-carlo]"]

[tool.black]
line-length = 88
line-length = 88
include = '\.py$|\.ipynb$'
skip-string-normalization = true

Expand Down

0 comments on commit 04c59ee

Please sign in to comment.