[med-svn] [Git][med-team/q2-metadata][master] 6 commits: New upstream version 2022.2.0

Andreas Tille (@tille) gitlab at salsa.debian.org
Wed Jul 20 14:25:46 BST 2022



Andreas Tille pushed to branch master at Debian Med / q2-metadata


Commits:
a9cb8c92 by Andreas Tille at 2022-07-20T14:54:31+02:00
New upstream version 2022.2.0
- - - - -
8e9d16e6 by Andreas Tille at 2022-07-20T14:54:31+02:00
routine-update: New upstream version

- - - - -
6f81d253 by Andreas Tille at 2022-07-20T14:54:31+02:00
Update upstream source from tag 'upstream/2022.2.0'

Update to upstream version '2022.2.0'
with Debian dir 9dc31c83ab96bc412775298aaaf15e7d49570c4a
- - - - -
ab82d3c0 by Andreas Tille at 2022-07-20T14:54:31+02:00
routine-update: Standards-Version: 4.6.1

- - - - -
bd8860ee by Andreas Tille at 2022-07-20T14:56:01+02:00
Bump versioned (Build-)Depends to latest qiime version

- - - - -
2be1dbfd by Andreas Tille at 2022-07-20T14:57:13+02:00
Upload to unstable

- - - - -


13 changed files:

- LICENSE
- debian/changelog
- debian/control
- q2_metadata/__init__.py
- q2_metadata/_distance.py
- q2_metadata/_tabulate.py
- q2_metadata/_version.py
- q2_metadata/plugin_setup.py
- q2_metadata/tests/__init__.py
- q2_metadata/tests/test_distance.py
- q2_metadata/tests/test_plugin_setup.py
- q2_metadata/tests/test_tabulate.py
- setup.py


Changes:

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


=====================================
debian/changelog
=====================================
@@ -1,3 +1,12 @@
+q2-metadata (2022.2.0-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream version
+  * Standards-Version: 4.6.1 (routine-update)
+  * Bump versioned (Build-)Depends to latest qiime version
+
+ -- Andreas Tille <tille at debian.org>  Wed, 20 Jul 2022 14:56:08 +0200
+
 q2-metadata (2021.8.0-1) unstable; urgency=medium
 
   * Team upload.


=====================================
debian/control
=====================================
@@ -13,10 +13,10 @@ Build-Depends: debhelper-compat (= 13),
                python3-pandas,
                python3-skbio,
                libjs-jquery-datatables,
-               qiime (>= 2021.8.0),
-               q2templates (>= 2021.8.0),
-               q2-types (>= 2021.8.0)
-Standards-Version: 4.6.0
+               qiime (>= 2022.2.0),
+               q2templates (>= 2022.2.0),
+               q2-types (>= 2022.2.0)
+Standards-Version: 4.6.1
 Vcs-Browser: https://salsa.debian.org/med-team/q2-metadata
 Vcs-Git: https://salsa.debian.org/med-team/q2-metadata.git
 Homepage: https://qiime2.org/
@@ -32,9 +32,9 @@ Depends: ${shlibs:Depends},
          python3-pandas,
          python3-skbio,
          libjs-jquery-datatables,
-         qiime (>= 2021.8.0),
-         q2templates (>= 2021.8.0),
-         q2-types (>= 2021.8.0)
+         qiime (>= 2022.2.0),
+         q2templates (>= 2022.2.0),
+         q2-types (>= 2022.2.0)
 Description: QIIME 2 plugin for working with and visualizing Metadata
  QIIME 2 is a powerful, extensible, and decentralized microbiome analysis
  package with a focus on data and analysis transparency. QIIME 2 enables


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


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


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


=====================================
q2_metadata/_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 = "1ba2cc31a9e49ab8db82e172d62088dbc0c2fc61"
-    git_date = "2021-09-09 18:35:29 +0000"
+    git_refnames = " (tag: 2022.2.0)"
+    git_full = "47baad6a097b8b97591e7cf70acb89b26af1eb02"
+    git_date = "2022-02-18 18:30:30 +0000"
     keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
     return keywords
 


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


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


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


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


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


=====================================
setup.py
=====================================
@@ -1,5 +1,5 @@
 # ----------------------------------------------------------------------------
-# Copyright (c) 2017-2021, QIIME 2 development team.
+# Copyright (c) 2017-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-metadata/-/compare/b23187cd642a0ef92b98c8c42a8e666dca17afa6...2be1dbfdd297822ecae38ba9dad803e806a56bb8

-- 
View it on GitLab: https://salsa.debian.org/med-team/q2-metadata/-/compare/b23187cd642a0ef92b98c8c42a8e666dca17afa6...2be1dbfdd297822ecae38ba9dad803e806a56bb8
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/20220720/53264b57/attachment-0001.htm>


More information about the debian-med-commit mailing list