Skip to content

Commit 3583ea2

Browse files
authored
Allow pip to resolve the setuptools version (#118)
1 parent 16b462e commit 3583ea2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ jobs:
1717
- uses: raven-actions/actionlint@v2
1818
- uses: actions/setup-python@v5
1919
with:
20+
python-version: '3.13'
2021
cache: 'pip'
21-
- run: pip install -r requirements.txt
22+
- name: Install dependencies
23+
run: |
24+
python -m pip install --upgrade pip
25+
pip install -r requirements.txt
2226
- uses: rhysd/action-setup-vim@v1
2327
id: vim
2428
- run: make lint

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
setuptools==72.1.0
21
vim-vint==0.4a3

0 commit comments

Comments
 (0)