Skip to content

Commit 54c69a3

Browse files
authored
Merge pull request #616 from RocketPy-Team/rel/v1.3.0.post1
BUG: pyproject.toml Main Module Finding.
2 parents 11c3030 + cd14018 commit 54c69a3

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3030
<!-- These are the changes that were not release yet, please add them correctly.
3131
Attention: The newest changes should be on top -->
3232

33+
## [1.3.0.post1] - 2024-06-02
34+
35+
You can install this version by running `pip install rocketpy==1.3.0.post1`
36+
37+
### Fixed
38+
39+
- BUG: pyproject.toml Main Module Finding. [#616](https://github.com/RocketPy-Team/RocketPy/pull/616)
40+
3341
## [1.3.0] - 2024-06-01
3442

3543
You can install this version by running `pip install rocketpy==1.3.0`

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
author = "RocketPy Team"
2626

2727
# The full version, including alpha/beta/rc tags
28-
release = "1.3.0"
28+
release = "1.3.0.post1"
2929

3030

3131
# -- General configuration ---------------------------------------------------

docs/user/installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you want to choose a specific version to guarantee compatibility, you may ins
1919

2020
.. code-block:: shell
2121
22-
pip install rocketpy==1.3.0
22+
pip install rocketpy==1.3.0.post1
2323
2424
2525
Optional Installation Method: ``conda``

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "rocketpy"
3-
version = "1.3.0"
3+
version = "1.3.0.post1"
44
description="Advanced 6-DOF trajectory simulation for High-Power Rocketry."
55
dynamic = ["dependencies"]
66
readme = "README.md"
@@ -20,11 +20,11 @@ documentation = "https://docs.rocketpy.org/"
2020
repository = "https://github.com/RocketPy-Team/RocketPy"
2121

2222
[build-system]
23-
requires = ["setuptools"]
23+
requires = ["setuptools>=42", "wheel"]
2424
build-backend = "setuptools.build_meta"
2525

2626
[tool.setuptools]
27-
py-modules = ['rocketpy']
27+
packages = { find = { where = ["."], include = ["rocketpy*"] } }
2828

2929
[tool.setuptools.dynamic]
3030
dependencies = { file = ["requirements.txt"] }

0 commit comments

Comments
 (0)