Compare commits

...

2 Commits

Author SHA1 Message Date
10d2e9f5b2 Merge branch 'master' into develop
Some checks reported errors
ydeng/splitmsa/pipeline/head Something is wrong with the build of this commit
2024-07-21 04:01:58 +00:00
2f49699a23 Loosened version requirements for twine.
Some checks reported errors
ydeng/splitmsa/pipeline/head Something is wrong with the build of this commit
2024-07-21 04:01:36 +00:00
3 changed files with 3 additions and 3 deletions

2
Jenkinsfile vendored
View File

@ -34,7 +34,7 @@ pipeline {
} }
steps { steps {
withCredentials([usernamePassword(credentialsId: 'rs-git-package-registry-ydeng', passwordVariable: 'PASS', usernameVariable: 'USER')]) { 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/*'
} }
} }
} }

View File

@ -4,7 +4,7 @@ channels:
dependencies: dependencies:
- build=0.7.0 - build=0.7.0
- pytest=7.2.2 - pytest=7.2.2
- twine=4.0.2 - twine
- biopython=1.81 - biopython=1.81
- python=3.9 - python=3.9
prefix: ./env prefix: ./env

View File

@ -9,4 +9,4 @@ install_requires =
[options.entry_points] [options.entry_points]
console_scripts = console_scripts =
splitmsa = splitmsa.splitmsa:main splitmsa = splitmsa.splitmsa:main