[med-svn] [Git][med-team/q2-taxa][master] 5 commits: routine-update: New upstream version

Steffen Möller (@moeller) gitlab at salsa.debian.org
Mon Jul 11 18:16:09 BST 2022



Steffen Möller pushed to branch master at Debian Med / q2-taxa


Commits:
38f45f83 by Steffen Moeller at 2022-07-11T19:09:34+02:00
routine-update: New upstream version

- - - - -
8692fa68 by Steffen Moeller at 2022-07-11T19:09:35+02:00
New upstream version 2022.2.0+dfsg
- - - - -
ba8c6a0d by Steffen Moeller at 2022-07-11T19:09:36+02:00
Update upstream source from tag 'upstream/2022.2.0+dfsg'

Update to upstream version '2022.2.0+dfsg'
with Debian dir 49683aa5c0d56688c81c4572b797ac9569622ec0
- - - - -
9d68041b by Steffen Moeller at 2022-07-11T19:09:36+02:00
routine-update: Standards-Version: 4.6.1

- - - - -
dd94f05f by Steffen Moeller at 2022-07-11T19:10:23+02:00
routine-update: Ready to upload to unstable

- - - - -


15 changed files:

- LICENSE
- ci/recipe/meta.yaml
- debian/changelog
- debian/control
- q2_taxa/__init__.py
- q2_taxa/_method.py
- q2_taxa/_util.py
- q2_taxa/_version.py
- q2_taxa/_visualizer.py
- q2_taxa/plugin_setup.py
- q2_taxa/tests/__init__.py
- q2_taxa/tests/test_methods.py
- q2_taxa/tests/test_plugin_setup.py
- q2_taxa/tests/test_visualizer.py
- setup.py


Changes:

=====================================
LICENSE
=====================================
@@ -1,6 +1,6 @@
 BSD 3-Clause License
 
-Copyright (c) 2016-2021, QIIME 2 development team.
+Copyright (c) 2016-2022, QIIME 2 development team.
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without


=====================================
ci/recipe/meta.yaml
=====================================
@@ -12,10 +12,15 @@ build:
   script: make install
 
 requirements:
+  build:
+    # nodejs is only necessary in the build phase - our build script needs it
+    # in order to render out transpiled js assets for various visualizations.
+    # once rendered, node is no longer necessary. don't set this in host reqs.
+    - nodejs
+
   host:
     - python {{ python }}
     - setuptools
-    - nodejs
 
   run:
     - python {{ python }}


=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+q2-taxa (2022.2.0+dfsg-1) unstable; urgency=medium
+
+  * New upstream version
+  * Standards-Version: 4.6.1 (routine-update)
+
+ -- Steffen Moeller <moeller at debian.org>  Mon, 11 Jul 2022 19:09:51 +0200
+
 q2-taxa (2021.8.0+dfsg-2) unstable; urgency=medium
 
   * Team upload.


=====================================
debian/control
=====================================
@@ -21,7 +21,7 @@ Build-Depends: debhelper-compat (= 13),
                node-natural-sort,
                node-thenby,
                node-d3
-Standards-Version: 4.6.0
+Standards-Version: 4.6.1
 Vcs-Browser: https://salsa.debian.org/med-team/q2-taxa
 Vcs-Git: https://salsa.debian.org/med-team/q2-taxa.git
 Homepage: https://qiime2.org/


=====================================
q2_taxa/__init__.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_taxa/_method.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_taxa/_util.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_taxa/_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: 2021.8.0)"
-    git_full = "b148b8ec248a63b43e8986ea74fe727dde0c07bb"
-    git_date = "2021-09-09 18:35:31 +0000"
+    git_refnames = " (tag: 2022.2.0)"
+    git_full = "31b83a895dfcabc815040ff9111387b2ba5afcc7"
+    git_date = "2022-02-18 18:13:23 +0000"
     keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
     return keywords
 


=====================================
q2_taxa/_visualizer.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_taxa/plugin_setup.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_taxa/tests/__init__.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_taxa/tests/test_methods.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_taxa/tests/test_plugin_setup.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
q2_taxa/tests/test_visualizer.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #


=====================================
setup.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2016-2021, QIIME 2 development team.
+# Copyright (c) 2016-2022, QIIME 2 development team.
 #
 # Distributed under the terms of the Modified BSD License.
 #



View it on GitLab: https://salsa.debian.org/med-team/q2-taxa/-/compare/9d624ae81766124e7bb0246e81fbd0061d79151f...dd94f05f6a21549e0dc8c27f2a21b77131a16710

-- 
View it on GitLab: https://salsa.debian.org/med-team/q2-taxa/-/compare/9d624ae81766124e7bb0246e81fbd0061d79151f...dd94f05f6a21549e0dc8c27f2a21b77131a16710
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/20220711/13c8164d/attachment-0001.htm>


More information about the debian-med-commit mailing list