Skip to content

Commit

Permalink
Replace deprecated install command (#773)
Browse files Browse the repository at this point in the history
  • Loading branch information
moi15moi authored Jan 26, 2025
1 parent 8945446 commit c0fb162
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: install comtypes
run: |
pip install --upgrade setuptools
python setup.py install
python -m pip install .
pip uninstall comtypes -y
python test_pip_install.py
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ environment:

test_script:
- C:\%py%\Scripts\pip.exe install --upgrade setuptools
- C:\%py%\python.exe setup.py install
- C:\%py%\python.exe -m pip install .
- C:\%py%\Scripts\pip.exe uninstall comtypes -y
- C:\%py%\python.exe test_pip_install.py
- C:\%py%\python.exe -m unittest discover -v -s ./comtypes/test -t comtypes\test

0 comments on commit c0fb162

Please sign in to comment.