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

Mohd Bilal (@rmb) gitlab at salsa.debian.org
Wed Sep 7 12:50:57 BST 2022



Mohd  Bilal pushed to branch master at Debian Med / q2-sample-classifier


Commits:
b2f2e569 by Mohammed Bilal at 2022-09-07T11:30:45+00:00
routine-update: New upstream version

- - - - -
7d791d49 by Mohammed Bilal at 2022-09-07T11:30:51+00:00
New upstream version 2022.8.0
- - - - -
5286589d by Mohammed Bilal at 2022-09-07T11:30:53+00:00
Update upstream source from tag 'upstream/2022.8.0'

Update to upstream version '2022.8.0'
with Debian dir f6eabae4fbf2c8fb305336851c164cf561baf46e
- - - - -
bd6ac837 by Mohammed Bilal at 2022-09-07T11:33:24+00:00
Update dependency on qiime/q2-* >= 2022.8.0

- - - - -
c8dee249 by Mohammed Bilal at 2022-09-07T11:36:54+00:00
Upload to unstable

- - - - -


5 changed files:

- ci/recipe/meta.yaml
- debian/changelog
- debian/control
- q2_sample_classifier/_version.py
- q2_sample_classifier/tests/test_utilities.py


Changes:

=====================================
ci/recipe/meta.yaml
=====================================
@@ -19,11 +19,11 @@ requirements:
   run:
     - python {{ python }}
     - pandas {{ pandas }}
-    - scipy
+    - scipy {{ scipy }}
     - numpy
     - joblib
     - scikit-learn {{ scikit_learn }}
-    - scikit-bio
+    - scikit-bio {{ scikit_bio }}
     - seaborn >=0.8
     - fastcluster
     - qiime2 {{ qiime2_epoch }}.*


=====================================
debian/changelog
=====================================
@@ -1,12 +1,17 @@
-q2-sample-classifier (2022.2.0-1) UNRELEASED; urgency=medium
+q2-sample-classifier (2022.8.0-1) unstable; urgency=medium
 
   * Team upload.
-  * New upstream version
+
+  [ Andreas Tille ]
+  * New upstream version 2022.2.0
   * Standards-Version: 4.6.1 (routine-update)
   * Bump versioned (Build-)Depends of q2-* packages to 2022.2.0
-  TODO: Lots of failures in autopkgtest
 
- -- Andreas Tille <tille at debian.org>  Wed, 20 Jul 2022 16:39:46 +0200
+  [ Mohammed Bilal ]
+  * New upstream version 2022.8.0
+  * Update dependency on qiime/q2-* >= 2022.8.0
+
+ -- Mohammed Bilal <mdbilal at disroot.org>  Wed, 07 Sep 2022 11:35:57 +0000
 
 q2-sample-classifier (2021.8.0-1) unstable; urgency=medium
 


=====================================
debian/control
=====================================
@@ -6,7 +6,7 @@ Section: science
 Priority: optional
 Build-Depends: debhelper-compat (= 13),
                dh-python,
-               qiime (>= 2022.2.0),
+               qiime (>= 2022.8.0),
                python3-all,
                python3-setuptools,
                python3-pytest <!nocheck>
@@ -21,10 +21,10 @@ Architecture: all
 Depends: ${shlibs:Depends},
          ${misc:Depends},
          ${python3:Depends},
-         qiime (>= 2022.2.0),
+         qiime (>= 2022.8.0),
          python3-distutils,
-         q2-types (>= 2022.2.0),
-         q2-feature-table (>= 2022.2.0)
+         q2-types (>= 2022.8.0),
+         q2-feature-table (>= 2022.8.0)
 Description: QIIME 2 plugin for machine learning prediction of sample data
  QIIME 2 is a powerful, extensible, and decentralized microbiome analysis
  package with a focus on data and analysis transparency. QIIME 2 enables


=====================================
q2_sample_classifier/_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.2.0)"
-    git_full = "5056003cb20259dfc4dd046c9043f0d89740bc95"
-    git_date = "2022-02-18 18:51:19 +0000"
+    git_refnames = " (tag: 2022.8.0)"
+    git_full = "b8258d820faf77bd27634664047b4c16dbd70ceb"
+    git_date = "2022-08-23 16:27:09 +0000"
     keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
     return keywords
 


=====================================
q2_sample_classifier/tests/test_utilities.py
=====================================
@@ -88,7 +88,7 @@ class UtilitiesTests(SampleClassifierTestPluginBase):
             _disable_feature_selection('KNeighborsClassifier', False)
 
     def test_mean_feature_importance_1d_arrays(self):
-        exp = pd.DataFrame([10, 9, 8, 7], columns=["importance0"],
+        exp = pd.DataFrame([10., 9., 8., 7.], columns=["importance0"],
                            index=[3, 2, 1, 0])
         imps = [pd.DataFrame([1, 2, 3, 4], columns=["importance0"]),
                 pd.DataFrame([5, 6, 7, 8], columns=["importance0"]),
@@ -97,7 +97,7 @@ class UtilitiesTests(SampleClassifierTestPluginBase):
         pdt.assert_frame_equal(_mean_feature_importance(imps), exp)
 
     def test_mean_feature_importance_different_column_names(self):
-        exp = pd.DataFrame([[6, 5, 4, 3], [14, 13, 12, 11]],
+        exp = pd.DataFrame([[6., 5., 4., 3.], [14., 13., 12., 11.]],
                            index=["importance0", "importance1"],
                            columns=[3, 2, 1, 0]).T
         imps = [pd.DataFrame([1, 2, 3, 4], columns=["importance0"]),



View it on GitLab: https://salsa.debian.org/med-team/q2-sample-classifier/-/compare/ffdb8a209a7f9e939e7466a63a3eb412569a94e4...c8dee2497440506055870c06acff1b587ca4a020

-- 
View it on GitLab: https://salsa.debian.org/med-team/q2-sample-classifier/-/compare/ffdb8a209a7f9e939e7466a63a3eb412569a94e4...c8dee2497440506055870c06acff1b587ca4a020
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/20220907/1dccdfaa/attachment-0001.htm>


More information about the debian-med-commit mailing list