Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pytest-mypy-testing for
openSUSE:Factory checked in at 2026-07-23 23:10:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-mypy-testing (Old)
and /work/SRC/openSUSE:Factory/.python-pytest-mypy-testing.new.2004 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytest-mypy-testing"
Thu Jul 23 23:10:34 2026 rev:6 rq:1367200 version:0.2.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pytest-mypy-testing/python-pytest-mypy-testing.changes
2026-03-03 15:32:57.678075687 +0100
+++
/work/SRC/openSUSE:Factory/.python-pytest-mypy-testing.new.2004/python-pytest-mypy-testing.changes
2026-07-23 23:13:40.927311234 +0200
@@ -1,0 +2,6 @@
+Thu Jul 23 00:28:22 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch do-not-use-builtins-for-revealed-types.patch:
+ * Do not use 'builtins.foo' for revealed types.
+
+-------------------------------------------------------------------
New:
----
do-not-use-builtins-for-revealed-types.patch
----------(New B)----------
New:
- Add patch do-not-use-builtins-for-revealed-types.patch:
* Do not use 'builtins.foo' for revealed types.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pytest-mypy-testing.spec ++++++
--- /var/tmp/diff_new_pack.4zvKXy/_old 2026-07-23 23:13:41.447329521 +0200
+++ /var/tmp/diff_new_pack.4zvKXy/_new 2026-07-23 23:13:41.447329521 +0200
@@ -25,6 +25,8 @@
License: Apache-2.0 OR MIT
URL: https://github.com/davidfritzsche/pytest-mypy-testing
Source:
https://files.pythonhosted.org/packages/source/p/pytest-mypy-testing/pytest_mypy_testing-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE Do not use 'builtins.foo' for revealed types
+Patch0: do-not-use-builtins-for-revealed-types.patch
BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module flit-core >= 3.12}
BuildRequires: %{python_module pip}
++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.4zvKXy/_old 2026-07-23 23:13:41.495331209 +0200
+++ /var/tmp/diff_new_pack.4zvKXy/_new 2026-07-23 23:13:41.499331350 +0200
@@ -1,6 +1,6 @@
-mtime: 1772418005
-commit: 5e413de573024b01a1a5d829bd180eba26cd5d99dec8d6d20bcef368cc365c31
-url: https://src.opensuse.org/python-pytest/python-pytest-mypy-testing.git
-revision: 5e413de573024b01a1a5d829bd180eba26cd5d99dec8d6d20bcef368cc365c31
+mtime: 1784766534
+commit: 43b8169ac9898b88ea5df7d7d0c8ed9f2296fcd0fb3c54f5ee8363dd518d4673
+url: https://src.opensuse.org/python-pytest/python-pytest-mypy-testing
+revision: 43b8169ac9898b88ea5df7d7d0c8ed9f2296fcd0fb3c54f5ee8363dd518d4673
projectscmsync: https://src.opensuse.org/python-pytest/_ObsPrj.git
++++++ build.specials.obscpio ++++++
++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore 1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore 2026-07-23 02:28:54.000000000 +0200
@@ -0,0 +1 @@
+.osc
++++++ do-not-use-builtins-for-revealed-types.patch ++++++
Index: pytest_mypy_testing-0.2.0/tests/test_basics.mypy-testing
===================================================================
--- pytest_mypy_testing-0.2.0.orig/tests/test_basics.mypy-testing
+++ pytest_mypy_testing-0.2.0/tests/test_basics.mypy-testing
@@ -53,25 +53,25 @@ def mypy_test_use_reveal_type():
@pytest.mark.mypy_testing
def mypy_test_use_reveal_type__float_var():
some_float = 123.03
- reveal_type(some_float) # R: builtins.float
+ reveal_type(some_float) # R: float
@pytest.mark.mypy_testing
def mypy_test_use_reveal_type__int_var():
some_int = 123
- reveal_type(some_int) # R: builtins.int
+ reveal_type(some_int) # R: int
@pytest.mark.mypy_testing
def mypy_test_use_reveal_type__int_list_var():
some_list = [123]
- reveal_type(some_list) # R: builtins.list[builtins.int]
+ reveal_type(some_list) # R: list[int]
@pytest.mark.mypy_testing
def mypy_test_use_reveal_type__int_list_var__with__inferred_asterisk():
some_list = [123]
- reveal_type(some_list) # R: builtins.list[builtins.int*]
+ reveal_type(some_list) # R: list[int]
@pytest.mark.mypy_testing