Skip to content

Commit

Permalink
build: simplify requirements documents
Browse files Browse the repository at this point in the history
  • Loading branch information
henryborchers committed Nov 25, 2024
1 parent 7a7fa7e commit f98cf8c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 91 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ pipeline {
nsis: params.PACKAGE_WINDOWS_STANDALONE_NSIS,
zipFile: params.PACKAGE_WINDOWS_STANDALONE_ZIP,
],
vendoredPythonRequirementsFile: 'requirements-freeze.txt',
vendoredPythonRequirementsFile: 'requirements-gui.txt',
buildDir: 'build\\cmake_build',
venvPath: "${WORKSPACE}\\build\\standalone_venv",
package: [
Expand Down
8 changes: 4 additions & 4 deletions ci/docker/windows_standalone/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ RUN Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.208 -Force ;`
ARG PIP_EXTRA_INDEX_URL
ARG PIP_INDEX_URL
ADD requirements.txt requirements-dev.txt c:\temp\
RUN python -m pip install --upgrade pip ; `
pip install wheel ; `
pip install --upgrade setuptools ;`
pip install -r c:\temp\requirements-dev.txt
RUN python -m pip install --no-cache-dir --upgrade pip ; `
pip install --no-cache-dir wheel ; `
pip install --no-cache-dir --upgrade setuptools ;`
pip install --no-cache-dir -r c:\temp\requirements-dev.txt

ENV PIP_FIND_LINKS=c:\wheels\
COPY ci/docker/windows_standalone/build_standalone.ps1 c:/scripts/build_standalone.ps1
Expand Down
86 changes: 0 additions & 86 deletions requirements-freeze.txt

This file was deleted.

0 comments on commit f98cf8c

Please sign in to comment.