forked from pool/python-trio
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 107c321621 | |||
| 43e13885ca | |||
| 89f82f141a | |||
| b858155e8c | |||
| 9595e1ed0b | |||
| a2c904cd00 | |||
| 3908619a72 | |||
| 0783f86b9f |
@@ -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>
|
Tue Mar 4 15:13:47 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-trio
|
# 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
|
# 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
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
%endif
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-trio%{psuffix}
|
Name: python-trio%{psuffix}
|
||||||
Version: 0.29.0
|
Version: 0.31.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python async/await-native I/O library
|
Summary: Python async/await-native I/O library
|
||||||
License: Apache-2.0 OR MIT
|
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
|
Source: https://files.pythonhosted.org/packages/source/t/trio/trio-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module base >= 3.8}
|
BuildRequires: %{python_module base >= 3.8}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools > 77}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: netcfg
|
BuildRequires: netcfg
|
||||||
@@ -71,7 +71,7 @@ has an obsessive focus on usability and correctness.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n trio-%{version}
|
%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
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
@@ -84,6 +84,7 @@ sed -i '/\/usr\/bin\/env\ python3/d' src/trio/_tests/check_type_completeness.py
|
|||||||
|
|
||||||
%check
|
%check
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
|
export PYTEST_ADDOPTS="-W ignore::DeprecationWarning"
|
||||||
# test_static_tool_sees_all_symbols uses jedi/pylint for static analysis,
|
# test_static_tool_sees_all_symbols uses jedi/pylint for static analysis,
|
||||||
# pointless for us.
|
# pointless for us.
|
||||||
donttest="test_static_tool_sees_all_symbols"
|
donttest="test_static_tool_sees_all_symbols"
|
||||||
|
|||||||
BIN
trio-0.29.0.tar.gz
(Stored with Git LFS)
BIN
trio-0.29.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
trio-0.31.0.tar.gz
Normal file
3
trio-0.31.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f71d551ccaa79d0cb73017a33ef3264fde8335728eb4c6391451fe5d253a9d5b
|
||||||
|
size 605825
|
||||||
Reference in New Issue
Block a user