Skip to content

Commit 76bb5aa

Browse files
authored
Merge pull request #20 from robotpy/romi-xrp
Add romi and xrp
2 parents 9d6067c + cdcce80 commit 76bb5aa

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

.github/workflows/dist.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ jobs:
7373
WHEEL=$(ls *.whl)
7474
python -m pip --disable-pip-version-check install ${WHEEL}[all]
7575
76+
- name: Show installed packages
77+
shell: bash
78+
run: |
79+
python -m pip list
80+
7681
# Only need to test that the wheel installs
7782

7883
cross-test:
@@ -129,6 +134,11 @@ jobs:
129134
WHEEL=$(ls *.whl)
130135
/build/venv/bin/cross-pip --disable-pip-version-check install ${WHEEL}[all]
131136
137+
- name: Show installed packages
138+
shell: bash
139+
run: |
140+
/build/venv/bin/cross-python -m pip list
141+
132142
publish:
133143
runs-on: ubuntu-latest
134144
needs: [check, test, cross-test]

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,9 @@ categories are:
4444
* phoenix6
4545
* playingwithfusion
4646
* rev
47-
* sim
48-
49-
The following aren't available for 2023 yet:
50-
5147
* romi
48+
* sim
49+
* xrp
5250

5351
Let's say that you wanted to install the latest version of the NavX software
5452
along with command based programming. You would do this:

rev-requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#robotpy-rev<2025.0.0,>=2024.0.0b1
2-
error-robotpy-rev-not-available-yet
1+
robotpy-rev<2025.0.0,>=2024.2.0

romi-requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# Not updated for 2023 yet?
2-
# robotpy-romi<2024.0.0,>=2022.2.1.0; platform_machine != "armv7l"
3-
error-robotpy-romi-not-available-yet
1+
robotpy-romi==2024.1.1.1; platform_machine != "roborio"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def get_reqs_from_path(path):
1111
content = Path(path).read_text()
1212

1313
# Do not include in all requirements if this special package is in there
14-
in_all = bool(re.match(r"^error-(.*)-not-available-yet$", content, re.MULTILINE))
14+
in_all = re.search(r"^error-(.*)-not-available-yet$", content, re.MULTILINE) is None
1515
return [
1616
req for req in content.splitlines() if req and not req.startswith("#")
1717
], in_all

xrp-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
robotpy-xrp==2024.1.1.1; platform_machine != "roborio"

0 commit comments

Comments
 (0)