We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a32d30c commit 151f83eCopy full SHA for 151f83e
.github/workflows/ci.yml
@@ -45,8 +45,14 @@ jobs:
45
uses: actions/setup-python@v4
46
with:
47
python-version: ${{ matrix.python-version }}
48
+ - name: Upgrade pip
49
+ run: python -m pip install --upgrade pip==23.2
50
- name: Install LIT package with testing dependencies
51
run: python -m pip install -e '.[test]'
52
+ - name: Debug dependency tree
53
+ run: |
54
+ python -m pip install pipdeptree
55
+ pipdeptree | grep decorator -A 5 || true
56
- name: Test LIT
57
run: pytest -v
58
- name: Setup Node ${{ matrix.node-version }}
0 commit comments