Andreas Tille pushed to branch upstream at Debian Med / q2-fragment-insertion
Commits: b6081b01 by Andreas Tille at 2023-01-17T11:38:48+01:00 New upstream version 2022.11.1 - - - - - 3 changed files: - + .github/workflows/add-to-project-ci.yml - q2_fragment_insertion/_insertion.py - q2_fragment_insertion/_version.py Changes: ===================================== .github/workflows/add-to-project-ci.yml ===================================== @@ -0,0 +1,21 @@ +name: Add new issues and PRs to triage project board + +on: + issues: + types: + - opened + pull_request_target: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/[email protected] + with: + project-url: https://github.com/orgs/qiime2/projects/36 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} + labeled: skip-triage + label-operator: NOT ===================================== q2_fragment_insertion/_insertion.py ===================================== @@ -27,7 +27,7 @@ from q2_fragment_insertion._format import PlacementsFormat, SeppReferenceDirFmt # which is not necessarily true for SEPP produced insertion trees. We add zero # branch length information for branches without an explicit length. def _add_missing_branch_length(tree_fp): - tree = skbio.TreeNode.read(tree_fp) + tree = skbio.TreeNode.read(tree_fp, format="newick") for node in tree.preorder(): if node.length is None: node.length = 0 ===================================== q2_fragment_insertion/_version.py ===================================== @@ -23,9 +23,9 @@ def get_keywords(): # setup.py/versioneer.py will grep for the variable names, so they must # each be defined on a line of their own. _version.py will just call # get_keywords(). - git_refnames = " (tag: 2022.8.0)" - git_full = "4843c553a36b7088183e541bb7172dc5c4155164" - git_date = "2022-08-23 17:28:26 +0000" + git_refnames = " (HEAD -> master, tag: 2022.11.1)" + git_full = "ce513ef02c8bdbbae872968080c6fa0af3111c3c" + git_date = "2022-12-21 22:17:44 +0000" keywords = {"refnames": git_refnames, "full": git_full, "date": git_date} return keywords View it on GitLab: https://salsa.debian.org/med-team/q2-fragment-insertion/-/commit/b6081b0159ca292eccced03f1323b303cece0afe -- View it on GitLab: https://salsa.debian.org/med-team/q2-fragment-insertion/-/commit/b6081b0159ca292eccced03f1323b303cece0afe You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
