File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- [build-system ]
2- requires = [" setuptools >= 61.0" ]
3- build-backend = " setuptools.build_meta"
4-
51[project ]
62name = " rlbot"
73description = " A high performance Python interface for communicating with RLBot v5."
8- dynamic = [ " version " ]
4+ readme = " README.md "
95requires-python = " >= 3.11"
6+ license = " MIT"
7+ authors = [{ name = " RLBot Community" , email = " rlbotofficial@gmail.com" }]
8+ keywords = [" rocket-league" ]
109dependencies = [
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 ]
2216Repository = " https://github.com/RLBot/python-interface"
2317
24- [tool .setuptools .dynamic ]
25- version = {attr = " rlbot.version.__version__" }
26-
2718[dependency-groups ]
2819dev = [
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 ]
3432docstring-code-format = true
33+
34+ [tool .setuptools .dynamic ]
35+ version = { attr = " rlbot.version.__version__" }
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 1- __version__ = "2.0.0-beta.54 "
1+ __version__ = "2.0.0-beta.55 "
You can’t perform that action at this time.
0 commit comments