Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to kickoff release #15

Merged
merged 10 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install coverage pytest-github-actions-annotate-failures
- run: python robot.py coverage test -- -v
- run: python -m robot coverage test -- -v
- uses: codecov/codecov-action@v3

mypy:
Expand Down
21 changes: 11 additions & 10 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ name = "pypi"

[packages]
numpy = "~=1.25.2"
pyfrc = "==2024.0.0b1"
robotpy-installer = "==2024.0.0b3"
robotpy = {version = "==2024.0.0b4", extras = ["apriltag", "cscore"]}
robotpy-ctre = "==2024.0.0b4"
robotpy-navx = "==2024.0.0b4"
robotpy-rev = "~=2024.0.0b1.post1"
robotpy-wpilib-utilities = "~=2024.0.0b1"
pyfrc = "==2024.0.1"
robotpy-installer = "==2024.0.2"
outsidermm marked this conversation as resolved.
Show resolved Hide resolved
robotpy = {version = "==2024.1.1.1", extras = ["apriltag", "cscore"]}
robotpy-ctre = "==2024.1.0"
robotpy-navx = "==2024.1.0"
robotpy-rev = "==2024.2.0"
robotpy-wpilib-utilities = "==2024.0.0"
phoenix6 = "==24.1.0"
outsidermm marked this conversation as resolved.
Show resolved Hide resolved

[dev-packages]
hypothesis = "*"
Expand All @@ -21,6 +22,6 @@ pytest = ">=7.2.0"
python_version = "3.11"

[scripts]
deploy = "python robot.py deploy"
sim = "python robot.py sim"
test = "python robot.py test"
deploy = "python -m robot deploy"
sim = "python -m robot sim"
test = "python -m robot test"
outsidermm marked this conversation as resolved.
Show resolved Hide resolved
Loading
Loading