Skip to content

Commit 40dee52

Browse files
committed
Merge branch 'master' into python-3.6-to-3.10
2 parents 76a6454 + 46a7a30 commit 40dee52

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ jobs:
4242

4343
- run:
4444
command: | # Use pip to install dependengcies
45-
pip install --user --upgrade setuptools
45+
# pip install --user --upgrade setuptools
46+
pip install --user -e git+https://github.com/rocky/python-xdis.git#egg=xdis
4647
pip install --user -e .
4748
# Not sure why "pip install -e" doesn't work above
4849
# pip install click spark-parser xdis

.github/workflows/osx.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
2323
run: |
24-
python -m pip install --upgrade pip
24+
# Until the next xdis release
25+
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
2526
pip install -e .
2627
# Not sure why "pip install -e" doesn't work above
2728
# pip install click spark-parser xdis

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: |
23-
python -m pip install --upgrade pip
23+
# Until the next xdis release
24+
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
2425
pip install -e .
2526
# pip install click spark-parser xdis
2627
pip install -r requirements-dev.txt

.github/workflows/windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
2323
run: |
24-
python -m pip install --upgrade pip
24+
# Until the next xdis release
25+
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
2526
pip install -e .
2627
# Not sure why "pip install -e" doesn't work above
2728
# pip install click spark-parser xdis

0 commit comments

Comments
 (0)