1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-06-20 08:44:07 +03:00

Merge pull request #1460 from EDCD/fix/windows-build_py2exe_semantic-version

windows-build: Try out pre-release py2exe w/ semantic_version==2.9.0
This commit is contained in:
Athanasius 2022-02-13 14:51:39 +00:00 committed by GitHub
commit cd160682a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -2,6 +2,11 @@
# Using legacy 'setup.py install' for flake8-annotations-coverage, since package 'wheel' is not installed.
wheel
# We can't rely on just picking this up from either the base (not venv),
# or venv-init-time version. Specify here so that dependabot will prod us
# about new versions.
setuptools==60.8.2
# Static analysis tools
flake8==4.0.1
flake8-annotations-coverage==0.0.5
@ -30,7 +35,9 @@ grip==4.6.0
# Used to put together a WiX configuration from template/auto-gen
lxml==4.7.1
# We only need py2exe on windows.
py2exe==0.11.0.1; sys_platform == 'win32'
# Pre-release version addressing semantic_version 2.9.0+ issues:
# <https://github.com/py2exe/py2exe/issues/126>
py2exe==0.11.1.0; sys_platform == 'win32'
# Testing
pytest==7.0.0

View File

@ -5,7 +5,7 @@ watchdog==2.1.6
infi.systray==0.1.12; sys_platform == 'win32'
# argh==0.26.2 watchdog dep
# pyyaml==5.3.1 watchdog dep
semantic-version==2.8.5
semantic-version==2.9.0
# Base requirement for MacOS
pyobjc; sys_platform == 'darwin'