14
0
forked from pool/python-trio

10 Commits

Author SHA256 Message Date
9cdbca1502 Accepting request 1320602 from devel:languages:python
Forwarded request #1320439 from glaubitz

- Update to 0.32.0
    * Allow trio.CapacityLimiter to have zero total_tokens. (#3321)
    * Fixed a bug where iterating over an @as_safe_channel-derived
      ReceiveChannel would raise BrokenResourceError if the channel
      was closed by another task. It now shuts down cleanly. (#3331)
    * trio.lowlevel.Task.iter_await_frames now works on completed tasks,
      by returning an empty list of frames if the underlying coroutine
      has been closed. Previously, it raised an internal error. (#3337)
  - Update BuildRequires from pyproject.toml

OBS-URL: https://build.opensuse.org/request/show/1320602
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-trio?expand=0&rev=25
2025-12-09 11:46:09 +00:00
1db2f55152 - Update to 0.32.0
* Allow trio.CapacityLimiter to have zero total_tokens. (#3321)
  * Fixed a bug where iterating over an @as_safe_channel-derived
    ReceiveChannel would raise BrokenResourceError if the channel
    was closed by another task. It now shuts down cleanly. (#3331)
  * trio.lowlevel.Task.iter_await_frames now works on completed tasks,
    by returning an empty list of frames if the underlying coroutine
    has been closed. Previously, it raised an internal error. (#3337)
- Update BuildRequires from pyproject.toml

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-trio?expand=0&rev=64
2025-11-29 22:18:08 +00:00
107c321621 Accepting request 1306751 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1306751
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-trio?expand=0&rev=24
2025-09-25 16:43:46 +00:00
43e13885ca - Update to 0.31.0
* Cancelled strings can now display the source and reason for a cancellation.
    Trio-internal sources of cancellation will set this string, and CancelScope.cancel
    now has a reason string parameter that can be used to attach info to any Cancelled
    to help in debugging. (#3232)
  * Make ctrl+c work in more situations in the Trio REPL (python -m trio). (#3007)
  * Allow pickling trio.Cancelled, as they can show up when you want to pickle something
    else. This does not rule out pickling other NoPublicConstructor objects -- create an
    issue if necessary. (#3248)
  * Decrease import time on Windows by around 10%. (#3263)
  * Handle unwrapping SystemExit/KeyboardInterrupt exception gracefully in utility function
    raise_single_exception_from_group that reraises last exception from group. (#3275)
  * Ensure that the DTLS server does not mutate SSL context. (#3277)
  * Avoid having trio.as_safe_channel raise if closing the generator wrapped GeneratorExit
    in a BaseExceptionGroup. (#3324)
  * Implement bool(trio.Event) and have it raise a DeprecationWarning and tell users to use
    trio.Event.is_set instead. This is an alternative to mypy --enable-error-code=truthy-bool
    for users who don't use type checking. (#3322)
  * When misnesting nurseries you now get a helpful RuntimeError instead of a catastrophic
    TrioInternalError. (#3307)
- Drop pyopenssl-25-1-compatibility.patch, merged upstream
- Remove shebang from trio/_tools/sync_requirements.py

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-trio?expand=0&rev=62
2025-09-23 13:32:07 +00:00
89f82f141a Accepting request 1294231 from devel:languages:python
- add pyopenssl-25-1-compatibility.patch to ignore deprecation
  warnings (from pyopenssl)

OBS-URL: https://build.opensuse.org/request/show/1294231
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-trio?expand=0&rev=23
2025-07-24 16:34:34 +00:00
b858155e8c Fix typo
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-trio?expand=0&rev=60
2025-07-17 20:57:56 +00:00
9595e1ed0b Mention pyopenssl-25-1-compatibility.patc in the changelog.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-trio?expand=0&rev=59
2025-07-17 20:38:14 +00:00
a2c904cd00 - ignore deprecation warnings (from pyopenssl)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-trio?expand=0&rev=58
2025-07-17 20:26:47 +00:00
3908619a72 Accepting request 1290021 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1290021
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-trio?expand=0&rev=22
2025-07-06 14:59:32 +00:00
0783f86b9f - Update to 0.30.0
* Add @trio.as_safe_channel, a wrapper that can be used to make async generators
    safe. This will be the suggested fix for the flake8-async lint rule ASYNC900. (#3197)
  * Allow trio to be a types.ModuleType and still have deprecated attributes. (#2135)
  * Fixed socket module for some older systems which lack socket.AI_NUMERICSERV.
  * Now trio works on legacy (pre-Lion) macOS. (#3133)
  * Update type hints for trio.run_process and trio.lowlevel.open_process. (#3183)
  * Don't mutate the global runner when MockClock is created. (#3205)
  * Fix incorrect return type hint for Nursery.start(). (#3224)
  * Update wording in documentation to more accurately reflect Trio's maturity. (#3216)
- Update BuildRequires from pyproject.toml

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-trio?expand=0&rev=56
2025-07-02 16:04:35 +00:00
4 changed files with 69 additions and 8 deletions

View File

@@ -1,3 +1,63 @@
-------------------------------------------------------------------
Fri Nov 28 10:38:27 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.32.0
* Allow trio.CapacityLimiter to have zero total_tokens. (#3321)
* Fixed a bug where iterating over an @as_safe_channel-derived
ReceiveChannel would raise BrokenResourceError if the channel
was closed by another task. It now shuts down cleanly. (#3331)
* trio.lowlevel.Task.iter_await_frames now works on completed tasks,
by returning an empty list of frames if the underlying coroutine
has been closed. Previously, it raised an internal error. (#3337)
- Update BuildRequires from pyproject.toml
-------------------------------------------------------------------
Tue Sep 23 11:04:19 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.31.0
* Cancelled strings can now display the source and reason for a cancellation.
Trio-internal sources of cancellation will set this string, and CancelScope.cancel
now has a reason string parameter that can be used to attach info to any Cancelled
to help in debugging. (#3232)
* Make ctrl+c work in more situations in the Trio REPL (python -m trio). (#3007)
* Allow pickling trio.Cancelled, as they can show up when you want to pickle something
else. This does not rule out pickling other NoPublicConstructor objects -- create an
issue if necessary. (#3248)
* Decrease import time on Windows by around 10%. (#3263)
* Handle unwrapping SystemExit/KeyboardInterrupt exception gracefully in utility function
raise_single_exception_from_group that reraises last exception from group. (#3275)
* Ensure that the DTLS server does not mutate SSL context. (#3277)
* Avoid having trio.as_safe_channel raise if closing the generator wrapped GeneratorExit
in a BaseExceptionGroup. (#3324)
* Implement bool(trio.Event) and have it raise a DeprecationWarning and tell users to use
trio.Event.is_set instead. This is an alternative to mypy --enable-error-code=truthy-bool
for users who don't use type checking. (#3322)
* When misnesting nurseries you now get a helpful RuntimeError instead of a catastrophic
TrioInternalError. (#3307)
- Drop pyopenssl-25-1-compatibility.patch, merged upstream
- Remove shebang from trio/_tools/sync_requirements.py
-------------------------------------------------------------------
Thu Jul 17 20:26:22 UTC 2025 - Dirk Müller <dmueller@suse.com>
- add pyopenssl-25-1-compatibility.patch to ignore deprecation
warnings (from pyopenssl)
-------------------------------------------------------------------
Wed Jul 2 11:20:53 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.30.0
* Add @trio.as_safe_channel, a wrapper that can be used to make async generators
safe. This will be the suggested fix for the flake8-async lint rule ASYNC900. (#3197)
* Allow trio to be a types.ModuleType and still have deprecated attributes. (#2135)
* Fixed socket module for some older systems which lack socket.AI_NUMERICSERV.
* Now trio works on legacy (pre-Lion) macOS. (#3133)
* Update type hints for trio.run_process and trio.lowlevel.open_process. (#3183)
* Don't mutate the global runner when MockClock is created. (#3205)
* Fix incorrect return type hint for Nursery.start(). (#3224)
* Update wording in documentation to more accurately reflect Trio's maturity. (#3216)
- Update BuildRequires from pyproject.toml
-------------------------------------------------------------------
Tue Mar 4 15:13:47 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-trio
#
# Copyright (c) 2025 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
@@ -26,15 +26,15 @@
%endif
%{?sle15_python_module_pythons}
Name: python-trio%{psuffix}
Version: 0.29.0
Version: 0.32.0
Release: 0
Summary: Python async/await-native I/O library
License: Apache-2.0 OR MIT
URL: https://github.com/python-trio/trio
Source: https://files.pythonhosted.org/packages/source/t/trio/trio-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module setuptools > 77}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: netcfg
@@ -71,7 +71,7 @@ has an obsessive focus on usability and correctness.
%prep
%autosetup -p1 -n trio-%{version}
sed -i '/\/usr\/bin\/env\ python3/d' src/trio/_tests/check_type_completeness.py src/trio/_tools/gen_exports.py
sed -i '/\/usr\/bin\/env\ python3/d' src/trio/_tests/check_type_completeness.py src/trio/_tools/gen_exports.py src/trio/_tools/sync_requirements.py
%build
%pyproject_wheel
@@ -84,6 +84,7 @@ sed -i '/\/usr\/bin\/env\ python3/d' src/trio/_tests/check_type_completeness.py
%check
%if %{with test}
export PYTEST_ADDOPTS="-W ignore::DeprecationWarning"
# test_static_tool_sees_all_symbols uses jedi/pylint for static analysis,
# pointless for us.
donttest="test_static_tool_sees_all_symbols"

Binary file not shown.

3
trio-0.32.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:150f29ec923bcd51231e1d4c71c7006e65247d68759dd1c19af4ea815a25806b
size 605323