Compare commits

..

No commits in common. "10d2e9f5b27d54fad808e8039d17f98502ad37e0" and "31283d5e496c9ecde5bc78deda3ab247761945af" have entirely different histories.

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 - twine=4.0.2
- 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