14
0
forked from pool/python-trio

8 Commits

Author SHA256 Message Date
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 55 additions and 7 deletions

View File

@@ -1,3 +1,50 @@
-------------------------------------------------------------------
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,7 +26,7 @@
%endif
%{?sle15_python_module_pythons}
Name: python-trio%{psuffix}
Version: 0.29.0
Version: 0.31.0
Release: 0
Summary: Python async/await-native I/O library
License: Apache-2.0 OR MIT
@@ -34,7 +34,7 @@ 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 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"

BIN
trio-0.29.0.tar.gz (Stored with Git LFS)

Binary file not shown.

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

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