Skip to content

Commit

Permalink
Fix pyproject dev-requires to requires-extra
Browse files Browse the repository at this point in the history
  • Loading branch information
cjrh committed Jan 19, 2020
1 parent 87c0eab commit d4abf59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Task gathering, cancellation, and executor shutdown all happen
automatically.

🐛 Error Handling
--------------
------------------

Unlike the standard library's ``asyncio.run()`` method, ``aiorun.run``
will run forever, and does not stop on unhandled exceptions. This is partly
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,9 @@ classifiers = [
description-file = "README.rst"
requires = ["typing; python_version < '3.5'"]
requires-python = ">=3.5"
dev-requires = ["pytest", "pytest-cov"]

[tool.flit.metadata.requires-extra]
dev = [
"pytest",
"pytest-cov"
]

0 comments on commit d4abf59

Please sign in to comment.