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 RobotPy bits to 2021 #192

Merged
merged 1 commit into from
Jan 27, 2021
Merged
Changes from all 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
10 changes: 5 additions & 5 deletions stage3/01-sys-tweaks/01-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ wget -nc -nv -O allwpilib.tar.gz \

# pynetworktables
wget -nc -nv -O pynetworktables.tar.gz \
https://github.com/robotpy/pynetworktables/archive/2020.0.1.tar.gz
https://github.com/robotpy/pynetworktables/archive/2021.0.0.tar.gz

# robotpy-cscore
wget -nc -nv -O robotpy-cscore.tar.gz \
https://github.com/robotpy/robotpy-cscore/archive/2020.0.1.tar.gz
https://github.com/robotpy/robotpy-cscore/archive/2021.0.0.tar.gz

# pybind11 submodule of robotpy-cscore
wget -nc -nv -O pybind11.tar.gz \
https://github.com/pybind/pybind11/archive/v2.4.3.tar.gz
https://github.com/pybind/pybind11/archive/v2.6.1.tar.gz

# pixy2
wget -nc -nv -O pixy2.tar.gz \
Expand Down Expand Up @@ -94,12 +94,12 @@ mv allwpilib-* allwpilib
# pynetworktables
tar xzf "${DOWNLOAD_DIR}/pynetworktables.tar.gz"
mv pynetworktables-* pynetworktables
echo "__version__ = '2020.0.1'" > pynetworktables/_pynetworktables/_impl/version.py
echo "__version__ = '2021.0.0'" > pynetworktables/_pynetworktables/_impl/version.py

# robotpy-cscore
tar xzf "${DOWNLOAD_DIR}/robotpy-cscore.tar.gz"
mv robotpy-cscore-* robotpy-cscore
echo "__version__ = '2020.0.1'" > robotpy-cscore/cscore/version.py
echo "__version__ = '2021.0.0'" > robotpy-cscore/cscore/version.py
pushd robotpy-cscore
rm -rf pybind11
tar xzf "${DOWNLOAD_DIR}/pybind11.tar.gz"
Expand Down