1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 08:17:13 +03:00

Comments out py2exe in requirements-dev.txt as it trips up GitHub Actions

docs/Releasing.md has fuller instructions on getting that specific
pyexe version installed anyway.
This commit is contained in:
Athanasius 2020-07-26 20:36:35 +01:00
parent a55537e272
commit 8ee20039f8
2 changed files with 9 additions and 4 deletions

View File

@ -55,9 +55,12 @@ You will need several pieces of software installed, or the files from their
1. Ensure you have `pip` installed. If needs be see
[Installing pip](https://pip.pypa.io/en/stable/installing/)
1. The easiest way is to utilise the `requirements-dev.txt` file:
`python -m pip install -r requirements-dev.txt`. This will install all dependencies plus anything required for development
1. Else check the contents of both `requirements.txt` and `requirements-dev.txt`, and ensure the modules
listed there are installed as per the version requirements.
`python -m pip install -r requirements-dev.txt`. This will install all
dependencies plus anything required for development *other than py2exe, see
above*.
1. Else check the contents of both `requirements.txt` and `requirements-dev.txt`,
and ensure the modules listed there are installed as per the version
requirements.
If you are using different versions of any of these tools then please ensure
that the paths where they're installed match the associated lines in

View File

@ -14,7 +14,9 @@ autopep8==1.5.3
grip==4.5.2
# Packaging
py2exe==0.9.3.2
# This isn't available via 'pip install', so has to be commented out in order for
# GitHub Action Workflows to not error out
#py2exe==0.9.3.2
# All of the normal requirements
-r requirements.txt