forked from pool/python-wsgi_intercept
Compare commits
31 Commits
7a9cabffb5
...
25df4848c0
Author | SHA256 | Date | |
---|---|---|---|
25df4848c0 | |||
cba21654fd | |||
50937df455 | |||
6aa8af5e3d | |||
fda6ea7ed2 | |||
5c44c33031 | |||
6b9dbb277c | |||
150972f0cf | |||
be738ab1cd | |||
|
e78b3bb362 | ||
5cc9d3a988 | |||
025388cb24 | |||
102bd02d8a | |||
b2185809fa | |||
3a822f7e5e | |||
19a65a8227 | |||
f87d0dbba0 | |||
48314f6fb4 | |||
627f0abbff | |||
61ffba94ba | |||
d277473dd1 | |||
4ece6e0dfe | |||
4e09d106d3 | |||
e33b00720d | |||
ba2c42e033 | |||
38be2261c8 | |||
|
8ff7bca2d5 | ||
|
df4677ac99 | ||
|
f9a357db47 | ||
|
c709783bda | ||
|
1929c141e7 |
@@ -1,3 +1,40 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 6 13:24:02 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.13.0:
|
||||
* Support Python 3.12
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 25 03:03:51 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 1.12.1:
|
||||
* Pin urllib3 to < 2.0.0 (#70)
|
||||
- Switch to pyproject macros
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 9 19:51:58 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||
|
||||
- Update to version 1.11.0
|
||||
* refer to pytest not py.test in tests (#69)
|
||||
|
||||
- Update to version 1.10.0
|
||||
* Correct handling of a environ keys in python2 (#66)
|
||||
* Accept urllib3 server_hostname keyword
|
||||
* Test by git hub actions (#64)
|
||||
* Merge pull request #63 from santosh653/master
|
||||
* Update .travis.yml
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 11 17:19:22 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||
|
||||
- Update to version 1.10.0
|
||||
* No upstream changelog
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 14 08:33:34 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Fix build without python2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 6 12:42:53 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
|
||||
@@ -86,8 +123,8 @@ Wed Sep 28 04:53:44 UTC 2016 - tbechtold@suse.com
|
||||
Tue Sep 27 21:31:45 UTC 2016 - dmueller@suse.com
|
||||
|
||||
- update to 1.4.1
|
||||
* Correct the bytes v str problem
|
||||
* Fix pep8 errors in doc string
|
||||
* Correct the bytes v str problem
|
||||
* Fix pep8 errors in doc string
|
||||
* Move tests from the test dir into wsgi_intercept/tests
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-wsgi_intercept
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,9 +16,8 @@
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-wsgi_intercept
|
||||
Version: 1.9.2
|
||||
Version: 1.13.0
|
||||
Release: 0
|
||||
Summary: Library for installing a WSGI application in place of a real URI for testing
|
||||
License: MIT
|
||||
@@ -26,20 +25,19 @@ URL: https://github.com/cdent/python3-wsgi-intercept
|
||||
Source: https://files.pythonhosted.org/packages/source/w/wsgi_intercept/wsgi_intercept-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module httplib2}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest >= 2.4}
|
||||
BuildRequires: %{python_module requests >= 2.0.1}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module six}
|
||||
BuildRequires: %{python_module urllib3 >= 1.11.0}
|
||||
BuildRequires: %{python_module urllib3 >= 1.11.0 with %python-urllib3 < 2}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-six
|
||||
BuildArch: noarch
|
||||
%if 0%{?_no_weakdeps}
|
||||
Requires: python-requests >= 2.0.1
|
||||
%else
|
||||
Requires: python-urllib3 < 2
|
||||
Recommends: python-requests >= 2.0.1
|
||||
%endif
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
@@ -53,11 +51,11 @@ can avoid spawning multiple processes or threads to test your Web app.
|
||||
%setup -q -n wsgi_intercept-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
rm -r %{buildroot}%{python_sitelib}/wsgi_intercept/tests
|
||||
%pyproject_install
|
||||
%python_expand rm -r %{buildroot}%{$python_sitelib}/wsgi_intercept/tests
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
@@ -65,7 +63,9 @@ export WSGI_INTERCEPT_SKIP_NETWORK=true
|
||||
%pytest
|
||||
|
||||
%files %{python_files}
|
||||
%{python_sitelib}/wsgi_intercept-%{version}-py%{py_ver}.egg-info
|
||||
%doc README
|
||||
%license LICENSE
|
||||
%{python_sitelib}/wsgi_intercept
|
||||
%{python_sitelib}/wsgi_intercept-%{version}.dist-info
|
||||
|
||||
%changelog
|
||||
|
3
wsgi_intercept-1.13.0.tar.gz
Normal file
3
wsgi_intercept-1.13.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:75a03e1d01ddb42002fb56b84acd2a7a8ece25efdd206444a13a9f1fbcfa934c
|
||||
size 29282
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:36888e094a5e1ed16ed74a88bfa7b81f0f665d927f9192b9c7d0ca015a28c2ac
|
||||
size 29083
|
Reference in New Issue
Block a user