1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 23:37:14 +03:00

[2051] Workflow and Requirement Update

This commit is contained in:
David Sangrey 2023-11-16 16:11:14 -05:00
parent 24aaea7ded
commit c8edce26e6
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
2 changed files with 9 additions and 16 deletions

View File

@ -103,18 +103,11 @@ jobs:
pip install wheel
pip install -r requirements-dev.txt
- name: Download latest WinSparkle release
- name: Download winsparkle
run: |
$url = "https://api.github.com/repos/vslavik/winsparkle/releases/latest"
$response = Invoke-RestMethod -Uri $url
$latestAsset = $response.assets | Where-Object { $_.name -match "WinSparkle.*\.zip" -and $_.name -notmatch "-src" }
$downloadUrl = $latestAsset.browser_download_url
Invoke-WebRequest -Uri $downloadUrl -OutFile WinSparkle-Latest.zip
Expand-Archive -Path WinSparkle-Latest.zip -DestinationPath .
$extractedFolder = Get-ChildItem -Filter "WinSparkle-*" -Directory
Move-Item -Path "$($extractedFolder.FullName)\Release\*" -Destination .
Invoke-Webrequest -UseBasicParsing https://github.com/vslavik/winsparkle/releases/download/v0.8.0/WinSparkle-0.8.0.zip -OutFile out.zip
Expand-Archive out.zip
Move-Item 'out\WinSparkle-0.8.0\Release\*' '.\'
- name: Build EDMC
run: |

View File

@ -18,24 +18,24 @@ flake8-noqa==1.3.2
flake8-polyfill==1.0.2
flake8-use-fstring==1.4
mypy==1.6.1
mypy==1.7.0
pep8-naming==0.13.3
safety==2.3.5
types-requests==2.31.0.2
types-requests==2.31.0.10
types-pkg-resources==0.1.3
# Code formatting tools
autopep8==2.0.4
# Git pre-commit checking
pre-commit==3.3.3
pre-commit==3.5.0
# HTML changelogs
grip==4.6.1
grip==4.6.2
# Packaging
# We only need py2exe on windows.
py2exe==0.13.0.0; sys_platform == 'win32'
py2exe==0.13.0.1; sys_platform == 'win32'
# Testing
pytest==7.4.3