Skip to content

Commit 8f38452

Browse files
committed
CI: correct right used for xdis install
1 parent ec3cf10 commit 8f38452

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- run:
4444
command: | # Use pip to install dependengcies
4545
# pip install --user --upgrade setuptools
46-
pip install --user -e git+https://github.com/rocky/python-xdis.git#egg=xdis
46+
pip install --user -e git+https://github.com/rocky/python-xdis.git@python-3.6-to-3.10#egg=xdis
4747
pip install --user -e .
4848
# Not sure why "pip install -e" doesn't work above
4949
# pip install click spark-parser xdis

.github/workflows/osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
# Until the next xdis release
25-
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
25+
pip install --local -e git+https://github.com/rocky/python-xdis.git@python-3.6-to-3.10#egg=xdis"
2626
pip install -e .
2727
# Not sure why "pip install -e" doesn't work above
2828
# pip install click spark-parser xdis

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
# Until the next xdis release
24-
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
24+
pip install --local -e git+https://github.com/rocky/python-xdis.git@python-3.6-to-3.10#egg=xdis"
2525
pip install -e .
2626
# pip install click spark-parser xdis
2727
pip install -r requirements-dev.txt

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
# Until the next xdis release
25-
pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
25+
pip install --local -e git+https://github.com/rocky/python-xdis.git@python-3.6-to-3.10#egg=xdis"
2626
pip install -e .
2727
# Not sure why "pip install -e" doesn't work above
2828
# pip install click spark-parser xdis

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ repos:
1414
hooks:
1515
- id: isort
1616
stages: [commit]
17-
- repo: https://github.com/psf/black
18-
rev: 23.12.1
19-
hooks:
20-
- id: black
21-
language_version: python3
22-
stages: [commit]
17+
# - repo: https://github.com/psf/black
18+
# rev: 23.12.1
19+
# hooks:
20+
# - id: black
21+
# language_version: python3
22+
# stages: [commit]

0 commit comments

Comments
 (0)