forked from pool/python-rt
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 0e461693fe | |||
| 1a4556721e | |||
| 3afb3ab953 | |||
| 82a5761719 | |||
| ac0979b0bb | |||
| 53282091bd | |||
| 43ffc4d9de | |||
| 36c3cec4cc |
@@ -1,3 +1,58 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 5 20:03:55 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.3.6:
|
||||||
|
* Catch *TransportError* from httpx and re-raise as
|
||||||
|
*ConnectionError* so that httpx transport error exceptions do
|
||||||
|
not leak (fixes #109).
|
||||||
|
* There was still a comparison issue, fix bad date comparison
|
||||||
|
(fixes #107)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 10 14:25:56 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.3.4
|
||||||
|
* Remove requirements section. this can be easily reviewed
|
||||||
|
in pyproject.toml
|
||||||
|
* Fix bad date comparison; fixes (#107)
|
||||||
|
- Use Python 3.11 on SLE-15 by default
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 7 10:32:07 UTC 2025 - Sebastian Wagner <sebix@sebix.at>
|
||||||
|
|
||||||
|
- switch to github tarball, as there's no longer an sdist on pypi
|
||||||
|
- update to version v3.3.3:
|
||||||
|
- Changes
|
||||||
|
- Starting with version 0.28.0 of httpx, *verify* should be either a bool or an *SSL Context*.
|
||||||
|
- update to version 3.3.2:
|
||||||
|
- Fixes
|
||||||
|
- Replace the removed httpx parameter of *proxies* by *proxy* (fixes #102)
|
||||||
|
- Pin dependencies to supported relative upstream versions.
|
||||||
|
- Remove the now obsolete *setup.py*.
|
||||||
|
- update to version 3.3.1:
|
||||||
|
- Fixes
|
||||||
|
- Fix str(bytes) warning (*BytesWarning: str() on a bytes instance*) (#1074)
|
||||||
|
- Changes
|
||||||
|
- Set included files for ruff
|
||||||
|
- Switch to hatchling
|
||||||
|
- Set ignores for tests files
|
||||||
|
- Ignore uv.lock
|
||||||
|
- update to version 3.3.0:
|
||||||
|
- Removed
|
||||||
|
- Remove support for now EoL Python 3.8.
|
||||||
|
- update to version 3.2.0:
|
||||||
|
- Added
|
||||||
|
- Added option for custom list of fields to be populated for search "query_format" param to avoid unnecessary round trips to get fields like Told, Starts, Resolved, etc by returning the required fields during search. (see #97 @nerdfirefighter)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 23 09:20:54 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.2.0:
|
||||||
|
* Added option for custom list of fields to be populated for
|
||||||
|
search "query_format" param to avoid unnecessary round trips
|
||||||
|
to get fields like Told, Starts, Resolved, etc by returning
|
||||||
|
the required fields during search. (see #97 @nerdfirefighter)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 14 08:56:09 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Thu Mar 14 08:56:09 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-rt
|
# spec file for package python-rt
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,23 +16,25 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-rt
|
Name: python-rt
|
||||||
Version: 3.1.4
|
Version: 3.3.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python interface to Request Tracker API
|
Summary: Python interface to Request Tracker API
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/CZ-NIC/python-rt
|
URL: https://github.com/CZ-NIC/python-rt
|
||||||
Source: https://files.pythonhosted.org/packages/source/r/rt/rt-%{version}.tar.gz
|
Source: https://github.com/python-rt/python-rt/archive/refs/tags/v%{version}.tar.gz#/rt-%{version}.tar.gz
|
||||||
Source1: setup.cfg
|
Source1: setup.cfg
|
||||||
BuildRequires: %{python_module base >= 3.7}
|
BuildRequires: %{python_module base >= 3.9}
|
||||||
|
BuildRequires: %{python_module hatchling}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
Requires: python-httpx >= 0.28
|
||||||
Requires: python-requests
|
Requires: python-requests
|
||||||
Requires: python-requests-toolbelt
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
@@ -41,7 +43,7 @@ BuildArch: noarch
|
|||||||
Python implementation of Request Tracker (a ticketing system) REST API described here: https://rt-wiki.bestpractical.com/wiki/REST
|
Python implementation of Request Tracker (a ticketing system) REST API described here: https://rt-wiki.bestpractical.com/wiki/REST
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n rt-%{version}
|
%setup -q -n python-rt-%{version}
|
||||||
cp %{SOURCE1} setup.cfg
|
cp %{SOURCE1} setup.cfg
|
||||||
sed -i 's/^dynamic = \["version"]/version = "%{version}"/' pyproject.toml
|
sed -i 's/^dynamic = \["version"]/version = "%{version}"/' pyproject.toml
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:15321e0dda3f38ce0c58ca7b556868cd9c89f6647dab21b10c10ecb6603b13a3
|
|
||||||
size 74559
|
|
||||||
3
rt-3.3.6.tar.gz
Normal file
3
rt-3.3.6.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:aa8f1a55a1745dfcde91de75cb8ee5a9bd605f10dea3bc3d62e32dd6fbd81f3f
|
||||||
|
size 72647
|
||||||
Reference in New Issue
Block a user