Skip to content

Commit

Permalink
Merge 427d835 into fca1189
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-maier committed Oct 2, 2020
2 parents fca1189 + 427d835 commit 41a8d80
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ platform:
@echo "Python version: $(python_version)"
@echo "Pip command name: $(PIP_CMD)"
@echo "Pip command location: $(shell $(WHICH) $(PIP_CMD))"
@echo "Pip command version: $(shell $(PIP_CMD) --version)"
@echo "$(package_name) package version: $(package_version)"

.PHONY: pip_list
Expand Down
10 changes: 10 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,16 @@ install:
- 'if "%UNIX_PATH%"=="C:\cygwin\bin" ( C:\cygwin\setup-x86.exe --no-shortcuts --quiet-mode )'
- 'if "%UNIX_PATH%"=="C:\cygwin64\bin" ( C:\cygwin64\setup-x86_64.exe --no-shortcuts --quiet-mode )'

- # Mitigate issue https://github.com/pypa/virtualenv/issues/1962 by excluding virtualenv 20.0.32
- 'if "%UNIX_PATH%"=="none" ( pip install virtualenv!=20.0.32 )'
- 'if "%UNIX_PATH%"=="C:\cygwin\bin" ( bash -c "pip install virtualenv!=20.0.32" )'
- 'if "%UNIX_PATH%"=="C:\cygwin64\bin" ( bash -c "pip install virtualenv!=20.0.32" )'

# List Python packages in host environment of tox
- 'if "%UNIX_PATH%"=="none" ( pip --version & pip list )'
- 'if "%UNIX_PATH%"=="C:\cygwin\bin" ( bash -c "pip --version && pip list" )'
- 'if "%UNIX_PATH%"=="C:\cygwin64\bin" ( bash -c "pip --version && pip list" )'

build: false

before_test:
Expand Down

0 comments on commit 41a8d80

Please sign in to comment.