Skip to content

Commit ebd7cf7

Browse files
Merge branch 'master' into improve-api-granularity
2 parents a41125b + 9ed5aa4 commit ebd7cf7

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
pip install -r requirements.txt
2222
- name: Analysing the code with pylint
2323
run: |
24-
pylint -d C0415,C0200,C0301,C0114,R0903,C0115,W0246,R0914,C0209,E1121,C0103,C2801,R0801,E1101,E0401,E0611,R0911,C0116,W0212,W0719,W0601,W1203,W0123,W0511,W0621,R0913,R0917 $(git ls-files '*.py')
24+
pylint -d R0912,C0415,C0200,C0301,C0114,R0903,C0115,W0246,R0914,C0209,E1121,C0103,C2801,R0801,E1101,E0401,E0611,R0911,C0116,W0212,W0719,W0601,W1203,W0123,W0511,W0621,R0913,R0917 $(git ls-files '*.py')

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/RocketPy-Team/Infinity-API)
44

5+
- API: https://api.rocketpy.org/
6+
- MCP Server: https://api.rocketpy.org/mcp/
7+
58
## Capabilities
69
- Performs rocket simulations and returns simulation data
710
- Stores simulation input data in mongo-db

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "Infinity-API"
3-
version = "2.3.0"
3+
version = "3.1.0"
44
description = "RESTFULL open API for rocketpy"
55
requires-python = ">=3.12"
66
authors = [

src/services/rocket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def get_rocketpy_finset(fins: Fins, kind: str) -> RocketPyFins:
188188
for key, value in fins.get_additional_parameters().items()
189189
if key not in base_kwargs
190190
}
191-
191+
192192
match kind:
193193
case "trapezoidal":
194194
factory = RocketPyTrapezoidalFins

0 commit comments

Comments
 (0)