[med-svn] [Git][med-team/q2templates][master] 5 commits: routine-update: New upstream version
Étienne Mollier (@emollier)
gitlab at salsa.debian.org
Sat Aug 19 11:13:21 BST 2023
Étienne Mollier pushed to branch master at Debian Med / q2templates
Commits:
0f47f1dd by Étienne Mollier at 2023-08-19T11:31:10+02:00
routine-update: New upstream version
- - - - -
2d54d9f7 by Étienne Mollier at 2023-08-19T11:31:11+02:00
New upstream version 2023.7.0+ds
- - - - -
b3a76973 by Étienne Mollier at 2023-08-19T11:31:11+02:00
Update upstream source from tag 'upstream/2023.7.0+ds'
Update to upstream version '2023.7.0+ds'
with Debian dir d87c6fb5386b5f479a6a897a023a8037f5250a5d
- - - - -
fc2de860 by Étienne Mollier at 2023-08-19T11:39:04+02:00
d/copyright: bump copyright year.
- - - - -
b246628e by Étienne Mollier at 2023-08-19T11:40:10+02:00
ready to upload to unstable.
- - - - -
19 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/copyright
- q2templates/__init__.py
- q2templates/_templates.py
- q2templates/_version.py
- q2templates/templates/assets/css/base-template.css
- q2templates/templates/assets/css/tab-parent.css
- q2templates/templates/assets/js/child.js
- q2templates/templates/assets/js/parent.js
- q2templates/tests/__init__.py
- q2templates/tests/test_util.py
- q2templates/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: q2templates
- build-target: dev
- additional-tests: py.test --pyargs q2templates
- 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) 2016-2022, QIIME 2 development team.
+Copyright (c) 2016-2023, QIIME 2 development team.
All rights reserved.
Redistribution and use in source and binary forms, with or without
=====================================
ci/recipe/meta.yaml
=====================================
@@ -30,6 +30,9 @@ test:
imports:
- q2templates
+ commands:
+ - py.test --pyargs q2templates
+
about:
home: https://qiime2.org
license: BSD-3-Clause
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+q2templates (2023.7.0+ds-1) unstable; urgency=medium
+
+ * New upstream version 2023.7.0+ds
+ * d/copyright: bump copyright year.
+
+ -- Étienne Mollier <emollier at debian.org> Sat, 19 Aug 2023 11:39:26 +0200
+
q2templates (2022.11.1+ds-2) unstable; urgency=medium
* Team upload
=====================================
debian/copyright
=====================================
@@ -7,7 +7,7 @@ Files-Excluded: */*.min.js
*/templates/assets/fonts
Files: *
-Copyright: 2016-2019 QIIME 2 development team
+Copyright: 2016-2023 QIIME 2 development team
License: BSD-3-clause
Files: versioneer.py
=====================================
q2templates/__init__.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2016-2022, QIIME 2 development team.
+# Copyright (c) 2016-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2templates/_templates.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2016-2022, QIIME 2 development team.
+# Copyright (c) 2016-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2templates/_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 = "7cec67046c2beb2bbc7263ed264af16a6ac37232"
- git_date = "2022-12-21 21:16:04 +0000"
+ git_refnames = " (tag: 2023.7.0, Release-2023.7)"
+ git_full = "f27745435b00069c34d95f6c526989d737455587"
+ git_date = "2023-08-17 16:26:14 +0000"
keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
return keywords
=====================================
q2templates/templates/assets/css/base-template.css
=====================================
@@ -1,6 +1,6 @@
/*
----------------------------------------------------------------------------
-Copyright (c) 2016-2022, QIIME 2 development team.
+Copyright (c) 2016-2023, QIIME 2 development team.
Distributed under the terms of the Modified BSD License.
=====================================
q2templates/templates/assets/css/tab-parent.css
=====================================
@@ -1,6 +1,6 @@
/*
----------------------------------------------------------------------------
-Copyright (c) 2016-2022, QIIME 2 development team.
+Copyright (c) 2016-2023, QIIME 2 development team.
Distributed under the terms of the Modified BSD License.
=====================================
q2templates/templates/assets/js/child.js
=====================================
@@ -1,5 +1,5 @@
// ----------------------------------------------------------------------------
-// Copyright (c) 2016-2022, QIIME 2 development team.
+// Copyright (c) 2016-2023, QIIME 2 development team.
//
// Distributed under the terms of the Modified BSD License.
//
=====================================
q2templates/templates/assets/js/parent.js
=====================================
@@ -1,5 +1,5 @@
// ----------------------------------------------------------------------------
-// Copyright (c) 2016-2022, QIIME 2 development team.
+// Copyright (c) 2016-2023, QIIME 2 development team.
//
// Distributed under the terms of the Modified BSD License.
//
=====================================
q2templates/tests/__init__.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2016-2022, QIIME 2 development team.
+# Copyright (c) 2016-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2templates/tests/test_util.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2016-2022, QIIME 2 development team.
+# Copyright (c) 2016-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
q2templates/util.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2016-2022, QIIME 2 development team.
+# Copyright (c) 2016-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
=====================================
setup.py
=====================================
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------
-# Copyright (c) 2016-2022, QIIME 2 development team.
+# Copyright (c) 2016-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
View it on GitLab: https://salsa.debian.org/med-team/q2templates/-/compare/9347af01c92b2af1a7e684c9da7d3e7dd6501164...b246628ea8924a286ed47ceaee6906a9bb1cf759
--
View it on GitLab: https://salsa.debian.org/med-team/q2templates/-/compare/9347af01c92b2af1a7e684c9da7d3e7dd6501164...b246628ea8924a286ed47ceaee6906a9bb1cf759
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/20230819/7823cfba/attachment-0001.htm>
More information about the debian-med-commit
mailing list