[med-svn] [Git][med-team/q2-diversity-lib][master] 4 commits: routine-update: New upstream version
Étienne Mollier (@emollier)
gitlab at salsa.debian.org
Sun Aug 20 13:39:10 BST 2023
Étienne Mollier pushed to branch master at Debian Med / q2-diversity-lib
Commits:
8110d822 by Étienne Mollier at 2023-08-20T14:35:25+02:00
routine-update: New upstream version
- - - - -
55a03bf0 by Étienne Mollier at 2023-08-20T14:35:26+02:00
New upstream version 2023.7.0
- - - - -
d509112c by Étienne Mollier at 2023-08-20T14:35:27+02:00
Update upstream source from tag 'upstream/2023.7.0'
Update to upstream version '2023.7.0'
with Debian dir 1155df8e06bc4589d6cf0a52be737cf3f940c744
- - - - -
f498aa93 by Étienne Mollier at 2023-08-20T14:38:30+02:00
routine-update: Ready to upload to unstable
- - - - -
21 changed files:
- + .github/workflows/ci-dev.yaml
- − .github/workflows/ci.yml
- + .github/workflows/join-release.yaml
- + .github/workflows/tag-release.yaml
- LICENSE
- ci/recipe/meta.yaml
- debian/changelog
- debian/control
- q2_diversity_lib/__init__.py
- q2_diversity_lib/_util.py
- q2_diversity_lib/_version.py
- q2_diversity_lib/alpha.py
- q2_diversity_lib/beta.py
- q2_diversity_lib/examples.py
- q2_diversity_lib/plugin_setup.py
- q2_diversity_lib/tests/__init__.py
- q2_diversity_lib/tests/test_alpha.py
- q2_diversity_lib/tests/test_beta.py
- q2_diversity_lib/tests/test_examples.py
- q2_diversity_lib/tests/test_util.py
- setup.py
Changes:
=====================================
.github/workflows/ci-dev.yaml
=====================================
@@ -0,0 +1,12 @@
+# Example of workflow trigger for calling workflow (the client).
+name: ci-dev
+on:
+ pull_request:
+ branches: ["dev"]
+ push:
+ branches: ["dev"]
+jobs:
+ ci:
+ uses: qiime2/distributions/.github/workflows/lib-ci-dev.yaml at dev
+ with:
+ distro: core
\ No newline at end of file
=====================================
.github/workflows/ci.yml deleted
=====================================
@@ -1,55 +0,0 @@
-# This file is automatically generated by busywork.qiime2.org and
-# template-repos - any manual edits made to this file will be erased when
-# busywork performs maintenance updates.
-
-name: ci
-
-on:
- pull_request:
- push:
- branches:
- - master
-
-jobs:
- lint:
- runs-on: ubuntu-latest
- steps:
- - name: checkout source
- uses: actions/checkout at v2
-
- - name: set up python 3.8
- uses: actions/setup-python at v1
- with:
- python-version: 3.8
-
- - name: install dependencies
- run: python -m pip install --upgrade pip
-
- - name: lint
- run: |
- pip install -q https://github.com/qiime2/q2lint/archive/master.zip
- q2lint
- pip install -q flake8
- flake8
-
- build-and-test:
- needs: lint
- strategy:
- matrix:
- os: [ubuntu-latest, macos-latest]
- runs-on: ${{ matrix.os }}
- steps:
- - name: checkout source
- uses: actions/checkout at v2
- with:
- fetch-depth: 0
-
- - name: set up git repo for versioneer
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
-
- - uses: qiime2/action-library-packaging at alpha1
- with:
- package-name: q2-diversity-lib
- build-target: dev
- additional-tests: py.test --pyargs q2_diversity_lib
- library-token: ${{ secrets.LIBRARY_TOKEN }}
=====================================
.github/workflows/join-release.yaml
=====================================
@@ -0,0 +1,6 @@
+name: join-release
+on:
+ workflow_dispatch: {}
+jobs:
+ release:
+ uses: qiime2/distributions/.github/workflows/lib-join-release.yaml at dev
\ No newline at end of file
=====================================
.github/workflows/tag-release.yaml
=====================================
@@ -0,0 +1,7 @@
+name: tag-release
+on:
+ push:
+ branches: ["Release-*"]
+jobs:
+ tag:
+ uses: qiime2/distributions/.github/workflows/lib-tag-release.yaml at dev
\ No newline at end of file
=====================================
LICENSE
=====================================
@@ -1,6 +1,6 @@
BSD 3-Clause License
-Copyright (c) 2018-2022, QIIME 2 development team.
+Copyright (c) 2018-2023, QIIME 2 development team.
All rights reserved.
Redistribution and use in source and binary forms, with or without
=====================================
ci/recipe/meta.yaml
=====================================
@@ -42,6 +42,9 @@ test:
- q2_diversity_lib
- qiime2.plugins.diversity_lib
+ commands:
+ - py.test --pyargs q2_diversity_lib
+
about:
home: https://qiime2.org
license: BSD-3-Clause
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+q2-diversity-lib (2023.7.0-1) unstable; urgency=medium
+
+ * Team upload.
+ * New upstream version
+
+ -- Étienne Mollier <emollier at debian.org> Sun, 20 Aug 2023 14:35:31 +0200
+
q2-diversity-lib (2022.11.1-2) unstable; urgency=medium
* Team upload
=====================================
debian/control
=====================================
@@ -25,7 +25,7 @@ Depends: ${shlibs:Depends},
python3-pandas,
python3-sklearn,
qiime (>= 2022.11.1),
- q2-emperor (>= 2022.11.1),
+ q2-emperor,
q2-feature-table (>= 2022.11.1),
r-base-core,
r-cran-vegan,
=====================================
q2_diversity_lib/__init__.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/_util.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/_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 = " (HEAD -> master, tag: 2022.11.1)"
- git_full = "cf2385b170fcdacc8ee0534073e8c00e0715629e"
- git_date = "2022-12-21 21:45:58 +0000"
+ git_refnames = " (tag: 2023.7.0, Release-2023.7)"
+ git_full = "645be62030176df51634a87ea26985cdf4b996c7"
+ git_date = "2023-08-17 18:41:01 +0000"
keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
return keywords
=====================================
q2_diversity_lib/alpha.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/beta.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/examples.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/plugin_setup.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/tests/__init__.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/tests/test_alpha.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/tests/test_beta.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/tests/test_examples.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2_diversity_lib/tests/test_util.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
setup.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2018-2022, QIIME 2 development team.
+# Copyright (c) 2018-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
View it on GitLab: https://salsa.debian.org/med-team/q2-diversity-lib/-/compare/74804de030b48b24a567701b0d4f962aa83e17e5...f498aa93d02d24cdc790eb6449ca9a28567ea37c
--
View it on GitLab: https://salsa.debian.org/med-team/q2-diversity-lib/-/compare/74804de030b48b24a567701b0d4f962aa83e17e5...f498aa93d02d24cdc790eb6449ca9a28567ea37c
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/20230820/93954e33/attachment-0001.htm>
More information about the debian-med-commit
mailing list