Closed johnthagen closed 8 years ago
Hello,
I tried this and it worked on Windows 7.
C:\Users\Carlos>python --version
Python 3.5.1
C:\Users\Carlos>pip install flake8-junit-report
Collecting flake8-junit-report
Downloading flake8-junit-report-2.0.1.tar.gz
Installing collected packages: flake8-junit-report
Running setup.py install for flake8-junit-report
Successfully installed flake8-junit-report-2.0.1
C:\Users\Carlos>python --version
Python 3.5.1
C:\Users\Carlos>pip list
flake8-junit-report (2.0.1)
pip (8.0.3)
setuptools (18.2)
However I will try it on Windows 10. What is your pip version?
@carlosgoce The pip
version is 8.0.2.
The problem I am specifically referring to, however, is that the final flake8_junit
command fails on Windows because there is no console entry point. pip
installs the package into site-packages fine.
I was in a hurry and I missed that line. I will fix it soon. Thank you.
@carlosgoce Just checking in to make sure this issue hadn't been lost, is it still possible to fix this issue and upload a new version to PyPI? Thanks.
Sorry I forgot it. Will check it out this week ASAP
Finally! It should be fixed
Works, thanks!
On Windows 10 using Python 3.5.1:
I think what you want is something like a
console_scripts
entry_point
:This will work on Linux and Windows.