Skip to content

Commit 3be9666

Browse files
authored
Updating to track rlbot 1.*, and refactoring to use a requirements.txt (#6)
1 parent c3ec6e6 commit 3be9666

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Include everything the framework requires
2+
# You will automatically get updates for all versions starting with "1.".
3+
rlbot==1.*

run-gui.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ IF %ERRORLEVEL% NEQ 0 (
2121
del %temp%\is_safe_to_upgrade.txt
2222

2323
IF "!is_safe_to_upgrade!"=="True" (
24-
@rem You will automatically get updates for all versions starting with "0.0.".
25-
python -m pip install rlbot==0.0.* --upgrade
24+
python -m pip install -r requirements.txt --upgrade
2625
) ELSE (
2726
echo Will not attempt to upgrade rlbot because files are in use.
2827
)

run.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ IF %ERRORLEVEL% NEQ 0 (
2121
del %temp%\is_safe_to_upgrade.txt
2222

2323
IF "!is_safe_to_upgrade!"=="True" (
24-
@rem You will automatically get updates for all versions starting with "0.0.".
25-
python -m pip install rlbot==0.0.* --upgrade
24+
python -m pip install -r requirements.txt --upgrade
2625
) ELSE (
2726
echo Will not attempt to upgrade rlbot because files are in use.
2827
)

0 commit comments

Comments
 (0)