Skip to content

Commit c6c9c54

Browse files
committed
* depend on outcome
1 parent b57229d commit c6c9c54

4 files changed

Lines changed: 12 additions & 2 deletions

File tree

ci/test-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pytest >= 3.1 # fixes a bug in handling async def test_* and turn warnings into errors.
22
pytest-cov
33
pytest-trio
4+
outcome

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
trio-asyncio (0.7.5-3) unstable; urgency=medium
2+
3+
* depend on outcome
4+
5+
-- Matthias Urlichs <matthias@urlichs.de> Mon, 23 Jul 2018 22:30:18 +0200
6+
17
trio-asyncio (0.7.5-2) unstable; urgency=medium
28

39
* Test and .gitignore fix-ups

debian/control

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ Build-Depends: dh-python, python3-setuptools, python3-all, debhelper (>= 9),
66
python3-trio (>= 0.4.0),
77
python3-pytest-trio,
88
python3-pytest-runner,
9+
python3-outcome,
910
Standards-Version: 3.9.6
1011
Homepage: https://github.com/smurfix/trio-asyncio
1112

1213
Package: python3-trio-asyncio
1314
Architecture: all
1415
Depends: ${misc:Depends}, ${python3:Depends},
15-
python3-trio (>= 0.4.0)
16+
python3-trio (>= 0.4.0),
17+
python3-outcome,
1618
Description: Re-implementation of the asyncio mainloop on top of Trio
1719
trio_asyncio allows you to call asyncio code from within Trio,
1820
or vice versa.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
install_requires = [
5454
"trio ~= 0.4.0",
5555
"async_generator >= 1.6",
56+
"outcome",
5657
]
5758
if sys.version_info < (3, 7):
5859
install_requires.append("contextvars >= 2.1")
@@ -74,7 +75,7 @@
7475
python_requires=">=3.5",
7576
keywords=["async", "io", "trio", "asyncio", "trio-asyncio"],
7677
setup_requires=['pytest-runner'],
77-
tests_require=['pytest'],
78+
tests_require=['pytest', 'outcome'],
7879
classifiers=[
7980
"Development Status :: 4 - Beta",
8081
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)