-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from oremanj/release-v0.2.2
Release v0.2.2
- Loading branch information
Showing
11 changed files
with
98 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,78 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile test-requirements.in | ||
# | ||
appdirs==1.4.3 # via black | ||
async-generator==1.10 # via -r test-requirements.in, pytest-trio, trio | ||
attrs==19.3.0 # via -r test-requirements.in, black, outcome, pytest, trio | ||
black==19.10b0 ; implementation_name == "cpython" # via -r test-requirements.in | ||
click==7.0 # via black | ||
coverage==4.5.4 # via pytest-cov | ||
entrypoints==0.3 # via flake8 | ||
flake8==3.7.9 # via -r test-requirements.in | ||
idna==2.8 # via trio | ||
mccabe==0.6.1 # via flake8 | ||
more-itertools==8.0.2 # via pytest | ||
mypy-extensions==0.4.3 # via mypy, trio-typing | ||
mypy==0.782 ; implementation_name == "cpython" # via -r test-requirements.in, trio-typing | ||
outcome==1.0.1 # via pytest-trio, trio | ||
packaging==19.2 # via pytest | ||
pathspec==0.6.0 # via black | ||
pluggy==0.13.1 # via pytest | ||
py==1.8.0 # via pytest | ||
pycodestyle==2.5.0 # via flake8 | ||
pyflakes==2.1.1 # via flake8 | ||
pyparsing==2.4.5 # via packaging | ||
pytest-cov==2.8.1 # via -r test-requirements.in | ||
pytest-trio==0.6.0 # via -r test-requirements.in | ||
pytest==5.3.1 # via -r test-requirements.in, pytest-cov, pytest-trio | ||
regex==2019.12.9 # via black | ||
six==1.13.0 # via packaging | ||
sniffio==1.1.0 # via trio | ||
sortedcontainers==2.1.0 # via trio | ||
toml==0.10.0 # via black | ||
trio-typing==0.5.0 # via -r test-requirements.in | ||
trio==0.17.0 # via -r test-requirements.in, pytest-trio, trio-typing | ||
typed-ast==1.4.0 ; implementation_name == "cpython" # via -r test-requirements.in, black, mypy | ||
typing-extensions==3.7.4.1 # via mypy, trio-typing | ||
wcwidth==0.1.7 # via pytest | ||
async-generator==1.10 | ||
# via | ||
# -r test-requirements.in | ||
# trio | ||
attrs==22.2.0 | ||
# via | ||
# -r test-requirements.in | ||
# pytest | ||
# trio | ||
black==23.1.0 ; implementation_name == "cpython" | ||
# via -r test-requirements.in | ||
click==8.1.3 | ||
# via black | ||
coverage[toml]==7.2.1 | ||
# via pytest-cov | ||
flake8==5.0.4 | ||
# via -r test-requirements.in | ||
idna==3.4 | ||
# via trio | ||
iniconfig==2.0.0 | ||
# via pytest | ||
mccabe==0.7.0 | ||
# via flake8 | ||
mypy==1.0.1 ; implementation_name == "cpython" | ||
# via -r test-requirements.in | ||
mypy-extensions==1.0.0 | ||
# via | ||
# black | ||
# mypy | ||
# trio-typing | ||
outcome==1.2.0 | ||
# via | ||
# pytest-trio | ||
# trio | ||
packaging==23.0 | ||
# via | ||
# black | ||
# pytest | ||
pathspec==0.11.0 | ||
# via black | ||
platformdirs==3.0.0 | ||
# via black | ||
pluggy==1.0.0 | ||
# via pytest | ||
pycodestyle==2.9.1 | ||
# via flake8 | ||
pyflakes==2.5.0 | ||
# via flake8 | ||
pytest==7.2.1 | ||
# via | ||
# -r test-requirements.in | ||
# pytest-cov | ||
# pytest-trio | ||
pytest-cov==4.0.0 | ||
# via -r test-requirements.in | ||
pytest-trio==0.8.0 | ||
# via -r test-requirements.in | ||
sniffio==1.3.0 | ||
# via trio | ||
sortedcontainers==2.4.0 | ||
# via trio | ||
trio==0.22.0 | ||
# via | ||
# -r test-requirements.in | ||
# pytest-trio | ||
# trio-typing | ||
trio-typing==0.7.0 | ||
# via -r test-requirements.in | ||
typing-extensions==4.5.0 | ||
# via | ||
# mypy | ||
# trio-typing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import attr | ||
import pytest # type: ignore | ||
import pytest | ||
import types | ||
import trio | ||
import trio.testing | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import pytest # type: ignore | ||
import pytest | ||
|
||
import trio | ||
import trio.testing | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import pytest # type: ignore | ||
import pytest | ||
import itertools | ||
import trio | ||
import trio.testing | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters