15
0

Compare commits

4 Commits

3 changed files with 41 additions and 7 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Nov 17 01:01:38 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Add patch support-python314.patch:
* Check for zstd support in the testsuite.
-------------------------------------------------------------------
Wed Jun 4 06:14:47 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
- No more greedy globs in %files.
-------------------------------------------------------------------
Tue Oct 11 16:19:03 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-twython
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2025 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
@@ -16,22 +16,24 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-twython
Version: 3.9.1
Release: 0
Summary: Python wrapper for the Twitter API
License: MIT
Group: Development/Languages/Python
URL: https://github.com/ryanmcgrath/twython
Source: https://files.pythonhosted.org/packages/source/t/twython/twython-%{version}.tar.gz
# PATCH-FIX-OPENSUSE Check for zstd compression support in a test
Patch0: support-python314.patch
# PyJWT 1.4.2 isnt compatible with single-spec
BuildRequires: %{python_module PyJWT > 1.4.2}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests >= 2.1.0}
BuildRequires: %{python_module requests-oauthlib >= 0.4.0}
BuildRequires: %{python_module responses}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-requests >= 2.1.0
@@ -60,13 +62,13 @@ Features include:
- Seamless Python 3 support!
%prep
%setup -q -n twython-%{version}
%autosetup -p1 -n twython-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -76,6 +78,7 @@ Features include:
%files %{python_files}
%doc README.md
%license LICENSE
%{python_sitelib}/*
%{python_sitelib}/twython
%{python_sitelib}/twython-%{version}.dist-info
%changelog

19
support-python314.patch Normal file
View File

@@ -0,0 +1,19 @@
Index: twython-3.9.1/tests/test_core.py
===================================================================
--- twython-3.9.1.orig/tests/test_core.py
+++ twython-3.9.1/tests/test_core.py
@@ -285,7 +285,13 @@ class TwythonAPITestCase(unittest.TestCa
self.api.get(endpoint)
- self.assertEqual(b'gzip, deflate', responses.calls[0].request.headers['Accept-Encoding'])
+ accept_encoding = b'gzip, deflate'
+ try:
+ import compression.zstd
+ accept_encoding += b', zstd'
+ except ImportError:
+ pass
+ self.assertEqual(accept_encoding, responses.calls[0].request.headers['Accept-Encoding'])
# Static methods
def test_construct_api_url(self):