mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-14 08:17:13 +03:00
[2051] Workflow and Requirement Update
This commit is contained in:
parent
24aaea7ded
commit
c8edce26e6
15
.github/workflows/windows-build.yml
vendored
15
.github/workflows/windows-build.yml
vendored
@ -103,18 +103,11 @@ jobs:
|
|||||||
pip install wheel
|
pip install wheel
|
||||||
pip install -r requirements-dev.txt
|
pip install -r requirements-dev.txt
|
||||||
|
|
||||||
- name: Download latest WinSparkle release
|
- name: Download winsparkle
|
||||||
run: |
|
run: |
|
||||||
$url = "https://api.github.com/repos/vslavik/winsparkle/releases/latest"
|
Invoke-Webrequest -UseBasicParsing https://github.com/vslavik/winsparkle/releases/download/v0.8.0/WinSparkle-0.8.0.zip -OutFile out.zip
|
||||||
$response = Invoke-RestMethod -Uri $url
|
Expand-Archive out.zip
|
||||||
$latestAsset = $response.assets | Where-Object { $_.name -match "WinSparkle.*\.zip" -and $_.name -notmatch "-src" }
|
Move-Item 'out\WinSparkle-0.8.0\Release\*' '.\'
|
||||||
|
|
||||||
$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 .
|
|
||||||
|
|
||||||
- name: Build EDMC
|
- name: Build EDMC
|
||||||
run: |
|
run: |
|
||||||
|
@ -18,24 +18,24 @@ flake8-noqa==1.3.2
|
|||||||
flake8-polyfill==1.0.2
|
flake8-polyfill==1.0.2
|
||||||
flake8-use-fstring==1.4
|
flake8-use-fstring==1.4
|
||||||
|
|
||||||
mypy==1.6.1
|
mypy==1.7.0
|
||||||
pep8-naming==0.13.3
|
pep8-naming==0.13.3
|
||||||
safety==2.3.5
|
safety==2.3.5
|
||||||
types-requests==2.31.0.2
|
types-requests==2.31.0.10
|
||||||
types-pkg-resources==0.1.3
|
types-pkg-resources==0.1.3
|
||||||
|
|
||||||
# Code formatting tools
|
# Code formatting tools
|
||||||
autopep8==2.0.4
|
autopep8==2.0.4
|
||||||
|
|
||||||
# Git pre-commit checking
|
# Git pre-commit checking
|
||||||
pre-commit==3.3.3
|
pre-commit==3.5.0
|
||||||
|
|
||||||
# HTML changelogs
|
# HTML changelogs
|
||||||
grip==4.6.1
|
grip==4.6.2
|
||||||
|
|
||||||
# Packaging
|
# Packaging
|
||||||
# We only need py2exe on windows.
|
# We only need py2exe on windows.
|
||||||
py2exe==0.13.0.0; sys_platform == 'win32'
|
py2exe==0.13.0.1; sys_platform == 'win32'
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
pytest==7.4.3
|
pytest==7.4.3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user