Skip to content

Commit

Permalink
Merge pull request #412 from diegoferigo/patch-1
Browse files Browse the repository at this point in the history
Remove usage of deprecated `pip` option
  • Loading branch information
traversaro authored May 24, 2022
2 parents d5b84db + 1924643 commit 2a97bc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 27 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/nightly-merge.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Make sure to use an updated pip
run: python -m pip install --upgrade pip

- name: Install pypa/build
run: pip install build
Expand All @@ -32,7 +35,7 @@ jobs:
run: python -m build --sdist --outdir dist/ tools/pip

- name: Install sdist
run: pip -v install --use-feature=in-tree-build dist/ycm_cmake_modules-*.tar.gz
run: pip -v install dist/ycm_cmake_modules-*.tar.gz

- name: Test import
run: python -c 'import ycm_cmake_modules'
Expand Down

0 comments on commit 2a97bc4

Please sign in to comment.