Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-click-didyoumean for
openSUSE:Factory checked in at 2024-04-02 16:44:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-click-didyoumean (Old)
and /work/SRC/openSUSE:Factory/.python-click-didyoumean.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-click-didyoumean"
Tue Apr 2 16:44:16 2024 rev:7 rq:1164116 version:0.3.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-click-didyoumean/python-click-didyoumean.changes
2024-01-15 22:19:01.678400709 +0100
+++
/work/SRC/openSUSE:Factory/.python-click-didyoumean.new.1905/python-click-didyoumean.changes
2024-04-02 16:47:07.479163446 +0200
@@ -1,0 +2,9 @@
+Tue Apr 2 13:07:50 UTC 2024 - Dirk Müller <[email protected]>
+
+- update to 0.3.1:
+ * Add repository property to pyproject.toml
+ * Add homepage url and readme for pypi
+ * Remove upper bound from Python version specifier
+ * Fix dependency manifest and CI
+
+-------------------------------------------------------------------
Old:
----
click-didyoumean-0.3.0.tar.gz
New:
----
click-didyoumean-0.3.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-click-didyoumean.spec ++++++
--- /var/tmp/diff_new_pack.P86OMn/_old 2024-04-02 16:47:08.095186104 +0200
+++ /var/tmp/diff_new_pack.P86OMn/_new 2024-04-02 16:47:08.099186251 +0200
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-click-didyoumean
-Version: 0.3.0
+Version: 0.3.1
Release: 0
Summary: Plugin to enable git-like did-you-mean feature in python-click
License: MIT
@@ -57,5 +57,6 @@
%files %{python_files}
%doc README.rst
-%{python_sitelib}/*
+%{python_sitelib}/click_didyoumean
+%{python_sitelib}/click_didyoumean-%{version}.dist-info
++++++ click-didyoumean-0.3.0.tar.gz -> click-didyoumean-0.3.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/click-didyoumean-0.3.0/.github/workflows/cicd.yml
new/click-didyoumean-0.3.1/.github/workflows/cicd.yml
--- old/click-didyoumean-0.3.0/.github/workflows/cicd.yml 2021-09-29
09:42:24.000000000 +0200
+++ new/click-didyoumean-0.3.1/.github/workflows/cicd.yml 2024-03-24
09:19:28.000000000 +0100
@@ -4,18 +4,17 @@
jobs:
ci:
- runs-on: ${{ matrix.os }}
+ runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-20.04' ||
'ubuntu-latest' }}
strategy:
fail-fast: false
max-parallel: 4
matrix:
- python-version: [3.6, 3.7, 3.8, 3.9]
- os: [ubuntu-latest]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -U pip poetry
@@ -34,9 +33,9 @@
- uses: actions/checkout@v1
- name: Set up Python
if: startsWith(github.event.ref, 'refs/tags')
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
- python-version: 3.9
+ python-version: "3.10"
- run: pip install -U pip poetry
- name: Publish package
if: startsWith(github.event.ref, 'refs/tags')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/click-didyoumean-0.3.0/pyproject.toml
new/click-didyoumean-0.3.1/pyproject.toml
--- old/click-didyoumean-0.3.0/pyproject.toml 2021-09-29 09:42:24.000000000
+0200
+++ new/click-didyoumean-0.3.1/pyproject.toml 2024-03-24 09:19:28.000000000
+0100
@@ -1,21 +1,24 @@
[tool.poetry]
name = "click-didyoumean"
-version = "0.3.0"
+version = "0.3.1"
description = "Enables git-like *did-you-mean* feature in click"
authors = ["Timo Furrer <[email protected]>"]
license = "MIT"
+homepage = "https://github.com/click-contrib/click-didyoumean"
+repository = "https://github.com/click-contrib/click-didyoumean"
+readme = "README.rst"
[tool.poetry.dependencies]
-python = "^3.6.2"
+python = ">=3.6.2"
click = ">=7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.9b0"
-isort = "^5.9.3"
+isort = {version = "^5.9.3", python = "<4"}
flake8 = "^3.9.2"
mypy = "^0.910"
[build-system]
requires = ["poetry-core>=1.0.0"]
-build-backend = "poetry.core.masonry.api"
\ No newline at end of file
+build-backend = "poetry.core.masonry.api"