Removed version selector for python

This commit is contained in:
Harrison Deng 2025-01-09 07:45:19 +00:00
parent b893d853a7
commit e3047d60d7

6
Jenkinsfile vendored
View File

@ -20,12 +20,12 @@ pipeline {
}
stage("build") {
steps {
sh "python3.11 -m build"
sh "python -m build"
}
}
stage("test installation") {
steps {
sh "python3.11 -m pip install dist/*.whl --force-reinstall"
sh "python -m pip install dist/*.whl --force-reinstall"
sh "automlst -h"
}
}
@ -42,7 +42,7 @@ pipeline {
branch '**/main'
}
steps {
sh returnStatus: true, script: 'python3.11 -m twine upload --repository-url https://git.reslate.systems/api/packages/${CREDS_USR}/pypi -u ${CREDS_USR} -p ${CREDS_PSW} --non-interactive --disable-progress-bar --verbose dist/*'
sh returnStatus: true, script: 'python -m twine upload --repository-url https://git.reslate.systems/api/packages/${CREDS_USR}/pypi -u ${CREDS_USR} -p ${CREDS_PSW} --non-interactive --disable-progress-bar --verbose dist/*'
}
}
}