[med-svn] [Git][med-team/ctdopts][upstream] New upstream version 1.5
Andreas Tille (@tille)
gitlab at salsa.debian.org
Mon Oct 18 17:12:45 BST 2021
Andreas Tille pushed to branch upstream at Debian Med / ctdopts
Commits:
a98d4f01 by Andreas Tille at 2021-10-18T15:37:14+02:00
New upstream version 1.5
- - - - -
3 changed files:
- CTDopts/CTDopts.py
- dist/conda/meta.yaml
- setup.py
Changes:
=====================================
CTDopts/CTDopts.py
=====================================
@@ -1222,8 +1222,9 @@ def args_from_file(filename):
if 'value' in element.attrib:
base[element.attrib['name']] = element.attrib['value']
elif element.tag == 'ITEMLIST':
- if element.getchildren():
- base[element.attrib['name']] = [listitem.attrib['value'] for listitem in element]
+ items = list(element)
+ if items:
+ base[element.attrib['name']] = [listitem.attrib['value'] for listitem in items]
root = parse(filename).getroot()
param_root = root if root.tag == 'PARAMETERS' else root.find('PARAMETERS')
=====================================
dist/conda/meta.yaml
=====================================
@@ -1,9 +1,9 @@
package:
name: ctdopts
- version: "1.4"
+ version: "1.5"
source:
- git_rev: v1.4
+ git_rev: v1.5
git_url: https://github.com/WorkflowConversion/CTDopts.git
build:
=====================================
setup.py
=====================================
@@ -2,7 +2,7 @@ from distutils.core import setup
setup(
name='CTDopts',
- version='1.4',
+ version='1.5',
packages=['CTDopts'],
url='https://github.com/genericworkflownodes/CTDopts',
license='',
View it on GitLab: https://salsa.debian.org/med-team/ctdopts/-/commit/a98d4f0126a7e1b604ec9af1edc8ee2e050b4ae7
--
View it on GitLab: https://salsa.debian.org/med-team/ctdopts/-/commit/a98d4f0126a7e1b604ec9af1edc8ee2e050b4ae7
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20211018/a2cdb9f6/attachment-0001.htm>
More information about the debian-med-commit
mailing list