From 2f49699a23bef367eac63c57583df9c1adfbbeff Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Sun, 21 Jul 2024 04:01:36 +0000 Subject: [PATCH] Loosened version requirements for twine. --- Jenkinsfile | 2 +- environment.yml | 2 +- setup.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fe35108..c7db412 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,7 +34,7 @@ pipeline { } steps { withCredentials([usernamePassword(credentialsId: 'rs-git-package-registry-ydeng', passwordVariable: 'PASS', usernameVariable: 'USER')]) { - sh "conda run -n base python -m twine upload --repository-url https://git.reslate.systems/api/packages/${USER}/pypi -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*" + sh 'conda run -n base python -m twine upload --repository-url https://git.reslate.systems/api/packages/${USER}/pypi -u ${USER} -p ${PASS} --non-interactive --disable-progress-bar --verbose dist/*' } } } diff --git a/environment.yml b/environment.yml index 9ebef1d..8e453ee 100644 --- a/environment.yml +++ b/environment.yml @@ -4,6 +4,6 @@ channels: dependencies: - build=0.7.0 - pytest=7.2.2 - - twine=4.0.2 + - twine - biopython=1.81 - python=3.9 diff --git a/setup.cfg b/setup.cfg index 48e2157..eb05533 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,4 +9,4 @@ install_requires = [options.entry_points] console_scripts = - splitmsa = splitmsa.splitmsa:main \ No newline at end of file + splitmsa = splitmsa.splitmsa:main