Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-flake8-deprecated for
openSUSE:Factory checked in at 2026-03-16 14:16:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-flake8-deprecated (Old)
and /work/SRC/openSUSE:Factory/.python-flake8-deprecated.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-flake8-deprecated"
Mon Mar 16 14:16:50 2026 rev:5 rq:1339145 version:2.3.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-flake8-deprecated/python-flake8-deprecated.changes
2023-12-06 23:48:21.595557291 +0100
+++
/work/SRC/openSUSE:Factory/.python-flake8-deprecated.new.8177/python-flake8-deprecated.changes
2026-03-16 14:19:59.615921987 +0100
@@ -1,0 +2,8 @@
+Sun Mar 15 19:11:28 UTC 2026 - Dirk Müller <[email protected]>
+
+- update to 2.3.0:
+ * Add support for Python 3.13 and drop Python 3.8. [gforcada]
+ * Drop python 3.9 support and add Python 3.14 support.
+ * Bump pypy minimum version to 3.10.
+
+-------------------------------------------------------------------
Old:
----
flake8_deprecated-2.2.1.tar.gz
New:
----
flake8_deprecated-2.3.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-flake8-deprecated.spec ++++++
--- /var/tmp/diff_new_pack.LPrh1A/_old 2026-03-16 14:20:00.067940751 +0100
+++ /var/tmp/diff_new_pack.LPrh1A/_new 2026-03-16 14:20:00.067940751 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-flake8-deprecated
#
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-flake8-deprecated
-Version: 2.2.1
+Version: 2.3.0
Release: 0
Summary: Flake8 deprecations plugin
License: GPL-2.0-only
++++++ flake8_deprecated-2.2.1.tar.gz -> flake8_deprecated-2.3.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/flake8_deprecated-2.2.1/.github/workflows/testing.yml
new/flake8_deprecated-2.3.0/.github/workflows/testing.yml
--- old/flake8_deprecated-2.2.1/.github/workflows/testing.yml 2020-02-02
01:00:00.000000000 +0100
+++ new/flake8_deprecated-2.3.0/.github/workflows/testing.yml 2020-02-02
01:00:00.000000000 +0100
@@ -12,15 +12,15 @@
runs-on: "ubuntu-latest"
strategy:
matrix:
- python-version: ["3.12", "3.11", "3.10", 3.9, 3.8, pypy-3.9]
+ python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "pypy-3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache packages
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{
hashFiles('tox.ini') }}
@@ -36,15 +36,15 @@
runs-on: "ubuntu-latest"
strategy:
matrix:
- python-version: [3.8]
+ python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache packages
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
~/.cache/pre-commit
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/.gitignore
new/flake8_deprecated-2.3.0/.gitignore
--- old/flake8_deprecated-2.2.1/.gitignore 2020-02-02 01:00:00.000000000
+0100
+++ new/flake8_deprecated-2.3.0/.gitignore 2020-02-02 01:00:00.000000000
+0100
@@ -5,7 +5,9 @@
.coverage
.installed.cfg
.hypothesis
+.tox
bin
develop-eggs
include
lib
+venv
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/.pre-commit-config.yaml
new/flake8_deprecated-2.3.0/.pre-commit-config.yaml
--- old/flake8_deprecated-2.2.1/.pre-commit-config.yaml 2020-02-02
01:00:00.000000000 +0100
+++ new/flake8_deprecated-2.3.0/.pre-commit-config.yaml 2020-02-02
01:00:00.000000000 +0100
@@ -4,20 +4,20 @@
repos:
- repo: https://github.com/asottile/pyupgrade
- rev: v3.14.0
+ rev: v3.20.0
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/pycqa/isort
- rev: 5.12.0
+ rev: 6.0.1
hooks:
- id: isort
- repo: https://github.com/psf/black
- rev: 23.9.1
+ rev: 25.1.0
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
- rev: 6.1.0
+ rev: 7.3.0
hooks:
- id: flake8
additional_dependencies:
@@ -32,20 +32,20 @@
- flake8-quotes
- repo: https://github.com/codespell-project/codespell
- rev: v2.2.6
+ rev: v2.4.1
hooks:
- id: codespell
additional_dependencies:
- tomli
- repo: https://github.com/mgedmin/check-manifest
- rev: "0.49"
+ rev: "0.50"
hooks:
- id: check-manifest
- repo: https://github.com/regebro/pyroma
- rev: "4.2"
+ rev: "5.0"
hooks:
- id: pyroma
- repo: https://github.com/mgedmin/check-python-versions
- rev: "0.21.3"
+ rev: "0.22.1"
hooks:
- id: check-python-versions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/CHANGES.rst
new/flake8_deprecated-2.3.0/CHANGES.rst
--- old/flake8_deprecated-2.2.1/CHANGES.rst 2020-02-02 01:00:00.000000000
+0100
+++ new/flake8_deprecated-2.3.0/CHANGES.rst 2020-02-02 01:00:00.000000000
+0100
@@ -3,6 +3,17 @@
Changelog
=========
+2.3.0 (2025-10-25)
+------------------
+
+- Add support for Python 3.13 and drop Python 3.8.
+ [gforcada]
+
+- Drop python 3.9 support and add Python 3.14 support.
+ [gforcada]
+
+- Bump pypy minimum version to 3.10.
+
2.2.1 (2023-11-02)
------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/MANIFEST.in
new/flake8_deprecated-2.3.0/MANIFEST.in
--- old/flake8_deprecated-2.2.1/MANIFEST.in 2020-02-02 01:00:00.000000000
+0100
+++ new/flake8_deprecated-2.3.0/MANIFEST.in 2020-02-02 01:00:00.000000000
+0100
@@ -3,7 +3,7 @@
include setup.cfg
include *.rst
include *.py
-include *requirements.txt
+include requirements*.txt
exclude .installed.cfg
exclude .coveragerc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/PKG-INFO
new/flake8_deprecated-2.3.0/PKG-INFO
--- old/flake8_deprecated-2.2.1/PKG-INFO 2020-02-02 01:00:00.000000000
+0100
+++ new/flake8_deprecated-2.3.0/PKG-INFO 2020-02-02 01:00:00.000000000
+0100
@@ -1,6 +1,6 @@
-Metadata-Version: 2.1
+Metadata-Version: 2.4
Name: flake8-deprecated
-Version: 2.2.1
+Version: 2.3.0
Summary: Warns about deprecated method calls
Project-URL: Homepage, https://github.com/gforcada/flake8-deprecated
Project-URL: Bug Tracker, https://github.com/gforcada/flake8-deprecated/issues
@@ -357,16 +357,16 @@
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
-Classifier: Programming Language :: Python :: 3.8
-Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
+Classifier: Programming Language :: Python :: 3.13
+Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Quality Assurance
-Requires-Python: >=3.8
+Requires-Python: >=3.10
Requires-Dist: flake8
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
@@ -374,11 +374,11 @@
.. -*- coding: utf-8 -*-
-.. image::
https://github.com/gforcada/flake8-deprecated/actions/workflows/testing.yml/badge.svg?branch=master
+.. image::
https://github.com/gforcada/flake8-deprecated/actions/workflows/testing.yml/badge.svg?branch=main
:target:
https://github.com/gforcada/flake8-deprecated/actions/workflows/testing.yml
-.. image::
https://coveralls.io/repos/gforcada/flake8-deprecated/badge.svg?branch=master
- :target:
https://coveralls.io/github/gforcada/flake8-deprecated?branch=master
+.. image::
https://coveralls.io/repos/gforcada/flake8-deprecated/badge.svg?branch=main
+ :target: https://coveralls.io/github/gforcada/flake8-deprecated?branch=main
Flake8 deprecations plugin
==========================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/README.rst
new/flake8_deprecated-2.3.0/README.rst
--- old/flake8_deprecated-2.2.1/README.rst 2020-02-02 01:00:00.000000000
+0100
+++ new/flake8_deprecated-2.3.0/README.rst 2020-02-02 01:00:00.000000000
+0100
@@ -1,10 +1,10 @@
.. -*- coding: utf-8 -*-
-.. image::
https://github.com/gforcada/flake8-deprecated/actions/workflows/testing.yml/badge.svg?branch=master
+.. image::
https://github.com/gforcada/flake8-deprecated/actions/workflows/testing.yml/badge.svg?branch=main
:target:
https://github.com/gforcada/flake8-deprecated/actions/workflows/testing.yml
-.. image::
https://coveralls.io/repos/gforcada/flake8-deprecated/badge.svg?branch=master
- :target:
https://coveralls.io/github/gforcada/flake8-deprecated?branch=master
+.. image::
https://coveralls.io/repos/gforcada/flake8-deprecated/badge.svg?branch=main
+ :target: https://coveralls.io/github/gforcada/flake8-deprecated?branch=main
Flake8 deprecations plugin
==========================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/pyproject.toml
new/flake8_deprecated-2.3.0/pyproject.toml
--- old/flake8_deprecated-2.2.1/pyproject.toml 2020-02-02 01:00:00.000000000
+0100
+++ new/flake8_deprecated-2.3.0/pyproject.toml 2020-02-02 01:00:00.000000000
+0100
@@ -4,7 +4,7 @@
[project]
name = "flake8-deprecated"
-version = "2.2.1"
+version = "2.3.0"
authors = [
{ name="Gil Forcada Codinachs", email="[email protected]" },
]
@@ -12,7 +12,7 @@
keywords = ["pep8", "flake8", "python", ]
license = {file = "LICENSE"}
readme = "README.rst"
-requires-python = ">=3.8"
+requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
@@ -24,11 +24,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: 3.13",
+ "Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
@@ -51,7 +51,7 @@
profile = "plone"
[tool.black]
-target-version = ["py38"]
+target-version = ["py312"]
skip-string-normalization = true
[tool.check-manifest]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/setup.cfg
new/flake8_deprecated-2.3.0/setup.cfg
--- old/flake8_deprecated-2.2.1/setup.cfg 2020-02-02 01:00:00.000000000
+0100
+++ new/flake8_deprecated-2.3.0/setup.cfg 1970-01-01 01:00:00.000000000
+0100
@@ -1,9 +0,0 @@
-[zest.releaser]
-create-wheel = yes
-
-[check-manifest]
-ignore =
- .installed.cfg
-
-[isort]
-profile = black
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/flake8_deprecated-2.2.1/tox.ini
new/flake8_deprecated-2.3.0/tox.ini
--- old/flake8_deprecated-2.2.1/tox.ini 2020-02-02 01:00:00.000000000 +0100
+++ new/flake8_deprecated-2.3.0/tox.ini 2020-02-02 01:00:00.000000000 +0100
@@ -4,11 +4,11 @@
format
lint
coverage
- py38
- py39
py310
py311
py312
+ py313
+ py314
pypy3
[testenv:test]
@@ -44,6 +44,7 @@
use_develop = true
skip_install = false
deps =
+ pytest-cov
coverage
commands =
pytest run_tests.py --cov --cov-report term-missing