Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pure-protobuf for
openSUSE:Factory checked in at 2024-05-17 20:05:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pure-protobuf (Old)
and /work/SRC/openSUSE:Factory/.python-pure-protobuf.new.1880 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pure-protobuf"
Fri May 17 20:05:49 2024 rev:3 rq:1174708 version:3.1.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pure-protobuf/python-pure-protobuf.changes
2024-03-08 18:09:24.658650477 +0100
+++
/work/SRC/openSUSE:Factory/.python-pure-protobuf.new.1880/python-pure-protobuf.changes
2024-05-17 20:07:07.987654074 +0200
@@ -1,0 +2,6 @@
+Fri May 17 02:04:36 UTC 2024 - Richard Rahl <[email protected]>
+
+- update to 3.1.0:
+ * dependency updates
+
+-------------------------------------------------------------------
Old:
----
pure_protobuf-3.0.1.tar.gz
python-pure-protobuf-tests-3.0.1.tar.gz
New:
----
pure_protobuf-3.1.0.tar.gz
python-pure-protobuf-tests-3.1.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pure-protobuf.spec ++++++
--- /var/tmp/diff_new_pack.4uzy2L/_old 2024-05-17 20:07:08.907687318 +0200
+++ /var/tmp/diff_new_pack.4uzy2L/_new 2024-05-17 20:07:08.911687464 +0200
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-pure-protobuf
-Version: 3.0.1
+Version: 3.1.0
Release: 0
Summary: Protocol Buffers using Python type annotations
License: MIT
++++++ pure_protobuf-3.0.1.tar.gz -> pure_protobuf-3.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pure_protobuf-3.0.1/PKG-INFO
new/pure_protobuf-3.1.0/PKG-INFO
--- old/pure_protobuf-3.0.1/PKG-INFO 1970-01-01 01:00:00.000000000 +0100
+++ new/pure_protobuf-3.1.0/PKG-INFO 1970-01-01 01:00:00.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: pure-protobuf
-Version: 3.0.1
+Version: 3.1.0
Summary: Protocol Buffers using Python type annotations
Home-page: https://github.com/eigenein/protobuf
License: MIT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pure_protobuf-3.0.1/pyproject.toml
new/pure_protobuf-3.1.0/pyproject.toml
--- old/pure_protobuf-3.0.1/pyproject.toml 2024-03-01 12:53:20.721666300
+0100
+++ new/pure_protobuf-3.1.0/pyproject.toml 2024-04-22 14:52:59.600939500
+0200
@@ -13,7 +13,7 @@
name = "pure-protobuf"
readme = "README.md"
repository = "https://github.com/eigenein/protobuf"
-version = "3.0.1"
+version = "3.1.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
@@ -25,6 +25,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
+ "Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
]
@@ -42,19 +43,19 @@
optional = true
[tool.poetry.group.dev.dependencies]
-black = "24.2.0"
+black = "24.3.0"
cairosvg = "2.7.1"
mkdocs-autorefs = "1.0.1"
mkdocs-git-revision-date-localized-plugin = "1.2.4"
-mkdocs-material = "9.5.12"
-mkdocstrings = { version = "0.24.1", extras = ["python"] }
-mypy = "1.8.0"
-pillow = "10.2.0"
-pydantic = "1.10.14"
-pytest = "8.0.2"
+mkdocs-material = "9.5.18"
+mkdocstrings = { version = "0.24.3", extras = ["python"] }
+mypy = "1.9.0"
+pillow = "10.3.0"
+pydantic = "2.7.0"
+pytest = "8.1.1"
pytest-benchmark = "4.0.0"
-pytest-cov = "4.1.0"
-ruff = "0.3.0"
+pytest-cov = "5.0.0"
+ruff = "0.4.1"
[tool.poetry.urls]
"Changelog" = "https://github.com/eigenein/protobuf/blob/master/CHANGELOG.md"
@@ -73,7 +74,6 @@
allow_redefinition = true
allow_untyped_globals = true
check_untyped_defs = true
-enable_incomplete_feature = "TypeVarTuple, Unpack"
ignore_missing_imports = true
pretty = true
@@ -95,11 +95,13 @@
[tool.black]
line-length = 120
-target-version = ["py38", "py39", "py310", "py311"]
+target-version = ["py38", "py39", "py310", "py311", "py312"]
[tool.ruff]
line-length = 120
target-version = "py38"
+
+[tool.ruff.lint]
select = [
"A",
"ANN",
@@ -122,6 +124,7 @@
"W",
"YTT",
]
+unfixable = ["B"]
ignore = [
"ANN101",
"ANN102",
@@ -149,10 +152,9 @@
"UP007", # 3.10
"UP033", # 3.9
]
-unfixable = ["B"]
-[tool.ruff.per-file-ignores]
+[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D101", "D102", "D106", "D205"]
-[tool.ruff.flake8-quotes]
+[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
++++++ python-pure-protobuf-tests-3.0.1.tar.gz ->
python-pure-protobuf-tests-3.1.0.tar.gz ++++++