wtf is this shit

This commit is contained in:
Fabian 2023-01-19 22:15:00 +01:00
parent 1353a5b4ee
commit 3f1e5eb2ec
2 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,7 @@
image: python:3.11
image: python:3.10
variables:
WINDOWS_PYTHON_PACKAGE_NAME: "python310"
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
PIPENV_VENV_IN_PROJECT: 1
UPDATE_WINDOWS_DEPS:
@ -24,8 +25,6 @@ prepare:
before_script:
- pip install setuptools_scm>=6.2
script:
- PYTHON_VERSION=$(python --version | cut -d " " -f2)
- echo "PYTHON_VERSION=${PYTHON_VERSION}" | tee -a build.env
- VERSION=$(python -m setuptools_scm)
- echo "VERSION=${VERSION}" | tee -a build.env
- echo "LINUX_AMD64_BINARY=fime_linux_amd64_${VERSION}" | tee -a build.env
@ -56,7 +55,7 @@ update_windows_deps:
- prepare
before_script:
- Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
- choco install python --version=$PYTHON_VERSION -y --no-progress
- choco install $WINDOWS_PYTHON_PACKAGE_NAME -y --no-progress
- refreshenv
- python --version
- pip install pipenv
@ -118,7 +117,7 @@ package_windows:
- if: $CI_COMMIT_TAG
before_script:
- Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
- choco install python --version=$PYTHON_VERSION -y --no-progress
- choco install $WINDOWS_PYTHON_PACKAGE_NAME -y --no-progress
- refreshenv
- python --version
- pip install pipenv

View File

@ -16,4 +16,4 @@ pyinstaller = "~=5.6"
build = {version = "~=0.10", sys_platform = "== 'linux'" }
[requires]
python_version = "3.11"
python_version = "3.10"