Skip to content

Commit 6871e67

Browse files
committed
* Require trio 0.11
1 parent 4990c61 commit 6871e67

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
trio-asyncio (0.10.0-2) unstable; urgency=medium
2+
3+
* Require trio 0.11
4+
5+
-- Matthias Urlichs <matthias@urlichs.de> Mon, 25 Feb 2019 12:37:16 +0100
6+
17
trio-asyncio (0.10.0-1) unstable; urgency=medium
28

39
* New release

debian/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Maintainer: Matthias Urlichs <matthias@urlichs.de>
33
Section: python
44
Priority: optional
55
Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9),
6-
python3-trio (>= 0.10.0),
6+
python3-trio (>= 0.11.0),
77
python3-pytest-trio,
88
python3-pytest-runner,
99
python3-outcome,
@@ -13,7 +13,7 @@ Homepage: https://github.com/smurfix/trio-asyncio
1313
Package: python3-trio-asyncio
1414
Architecture: all
1515
Depends: ${misc:Depends}, ${python3:Depends},
16-
python3-trio (>= 0.10.0),
16+
python3-trio (>= 0.11.0),
1717
python3-outcome,
1818
Description: Re-implementation of the asyncio mainloop on top of Trio
1919
trio_asyncio allows you to call asyncio code from within Trio,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"""
5454

5555
install_requires = [
56-
"trio >= 0.10.0",
56+
"trio >= 0.11.0",
5757
"async_generator >= 1.6",
5858
"outcome",
5959
]

0 commit comments

Comments
 (0)