Skip to content

Commit

Permalink
Use github xdis for now...
Browse files Browse the repository at this point in the history
It has fixes to instruction handling we need here.
  • Loading branch information
rocky committed Nov 18, 2024
1 parent 2518edc commit bcf24fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
# Until the next xdis release:
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
# Not sure why "pip install -e" doesn't work above
# pip install click spark-parser xdis
pip install -e .
pip install -r requirements-dev.txt
- name: Test this package
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ jobs:
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Until the next xdis release:
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
pip install -e .
# pip install click spark-parser xdis
pip install -r requirements-dev.txt
Expand Down

0 comments on commit bcf24fb

Please sign in to comment.