-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from robotpy/misc
Misc
- Loading branch information
Showing
6 changed files
with
156 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Copyright (c) 2009-2023 FIRST and other WPILib contributors | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
* Neither the name of FIRST, WPILib, nor the names of other WPILib | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY FIRST AND OTHER WPILIB CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY NONINFRINGEMENT AND FITNESS FOR A PARTICULAR | ||
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL FIRST OR CONTRIBUTORS BE LIABLE FOR | ||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,47 @@ | ||
mostrobotpy | ||
=========== | ||
=========== | ||
|
||
This repository contains core python libraries that wrap the C++ artifacts of | ||
[allwpilib](https://github.com/wpilibsuite/allwpilib). These libraries are | ||
officially supported for use in the FIRST Robotics Competition. | ||
|
||
API Documentation | ||
================= | ||
|
||
API documentation is at https://robotpy.readthedocs.io/projects/robotpy/en/latest/ | ||
|
||
Building RobotPy | ||
================ | ||
|
||
> [!WARNING] | ||
> It is not recommended for users to build their own copy of RobotPy. | ||
> Instead you should use our prebuilt packages that we publish on PyPI and | ||
> on the WPILib artifactory site. See TODO for details | ||
mostrobotpy consists of many interdependent python packages, which can be | ||
found in the `subprojects` directory. Each subproject can be built like | ||
any other python project, but it is recommended that you use our `rdev.sh` | ||
tool instead. | ||
|
||
You must have a working C++ build system and python development headers | ||
installed for your system. | ||
|
||
Next install dependencies using pip: | ||
|
||
pip install -r rdev_requirements.txt | ||
pip install numpy | ||
|
||
Then run this command to build all the wheels. | ||
|
||
./rdev.sh ci run | ||
|
||
All the resulting wheels are in `dist`, which can be installed using `pip`. | ||
|
||
Cross Compilation | ||
----------------- | ||
|
||
We only support cross-compiling for RoboRIO and raspbian via the WPILib | ||
docker build containers. See `.github/workflows/dist.yml`'s `cross-build` | ||
job for the name of the containers and the steps that must be run inside | ||
the container. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters