Skip to content

Commit cc246ed

Browse files
committed
Update flatbuffers to 0.19.0 and remove commands parameter
1 parent 0ed55af commit cc246ed

3 files changed

Lines changed: 20 additions & 21 deletions

File tree

pyproject.toml

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,35 @@
1-
[build-system]
2-
requires = ["setuptools >= 61.0"]
3-
build-backend = "setuptools.build_meta"
4-
51
[project]
62
name = "rlbot"
73
description = "A high performance Python interface for communicating with RLBot v5."
8-
dynamic = ["version"]
4+
readme = "README.md"
95
requires-python = ">= 3.11"
6+
license = "MIT"
7+
authors = [{ name = "RLBot Community", email = "rlbotofficial@gmail.com" }]
8+
keywords = ["rocket-league"]
109
dependencies = [
11-
"rlbot_flatbuffers~=0.18.2",
12-
"psutil==7.*",
10+
"psutil==7.*",
11+
"rlbot_flatbuffers~=0.19.0",
1312
]
14-
readme = "README.md"
15-
license = {text = "MIT"}
16-
authors = [
17-
{name = "RLBot Community", email = "rlbotofficial@gmail.com" }
18-
]
19-
keywords = ["rocket-league"]
13+
dynamic = ["version"]
2014

2115
[project.urls]
2216
Repository = "https://github.com/RLBot/python-interface"
2317

24-
[tool.setuptools.dynamic]
25-
version = {attr = "rlbot.version.__version__"}
26-
2718
[dependency-groups]
2819
dev = [
29-
"ruff>=0.13.0",
30-
"toml>=0.10.2",
20+
"ruff>=0.16.0",
21+
"toml>=0.10.2",
3122
]
3223

24+
[build-system]
25+
requires = ["setuptools >= 61.0"]
26+
build-backend = "setuptools.build_meta"
27+
28+
[tool.basedpyright]
29+
typeCheckingMode = "standard"
30+
3331
[tool.ruff.format]
3432
docstring-code-format = true
33+
34+
[tool.setuptools.dynamic]
35+
version = { attr = "rlbot.version.__version__" }

rlbot/utils/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ def fill_desired_game_state(
55
balls: dict[int, flat.DesiredBallState] = {},
66
cars: dict[int, flat.DesiredCarState] = {},
77
match_info: flat.DesiredMatchInfo | None = None,
8-
commands: list[str] = [],
98
) -> flat.DesiredGameState:
109
"""
1110
Converts the dictionaries to a DesiredGameState by
@@ -14,7 +13,6 @@ def fill_desired_game_state(
1413

1514
game_state = flat.DesiredGameState(
1615
match_info=match_info,
17-
console_commands=[flat.ConsoleCommand(cmd) for cmd in commands],
1816
)
1917

2018
if balls:

rlbot/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.0-beta.54"
1+
__version__ = "2.0.0-beta.55"

0 commit comments

Comments
 (0)