Skip to content

Commit

Permalink
Support what's doc next section
Browse files Browse the repository at this point in the history
  • Loading branch information
vyahello committed May 30, 2020
1 parent bf02efc commit 70dfa29
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: python
python:
- "3.6"
- "3.7"
- "3.8"
addons:
apt:
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
> Provides asynchronous user-friendly micro HTTP client with nothing but clean objects.
> Basically, it is a wrapper over **requests** python library with async/await approach.
> Represents asynchronous version of [urequest](https://github.com/upymake/urequest) package.
> Represents asynchronous version of [urequest](https://upymake.github.io/urequest/) package.
## Tools

- python 3.7, 3.8
- python 3.6, 3.7, 3.8
- [asyncio](https://docs.python.org/3/library/asyncio.html) library
- [requests](https://requests.readthedocs.io/en/master) library
- [travis](https://travis-ci.org/) CI
Expand Down Expand Up @@ -155,4 +155,9 @@ I would highly appreciate any contribution and support. If you are interested to
7. Push to the branch (git push origin feature/fooBar)
8. Create a new Pull Request

### What's next

All recent activities and ideas are described at project [issues](https://github.com/aiopymake/aiorequest/issues) page.
If you have ideas you want to change/implement please do not hesitate and create an issue.

**[⬆ back to top](#aiorequest)**
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def __first_line(string: str, delimiter: str = "\n") -> str:
include_package_data=True,
install_requires=__requirements(),
classifiers=(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
f"License :: OSI Approved :: {__license} License",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
),
pytest.param(
HTTPStatus.OK,
(HTTPStatus.OK, HTTPStatus.CREATED, HTTPStatus.UNAVAILABLE_FOR_LEGAL_REASONS),
(HTTPStatus.OK, HTTPStatus.CREATED, HTTPStatus.ACCEPTED),
id="success",
),
pytest.param(
Expand Down

0 comments on commit 70dfa29

Please sign in to comment.