You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Testing Python 3.11
* Switching to `httptools.parser.HttpRequestParser`.
* Disabling tests for `pook` when testing Python 3.11
* Removing DeprecationWarning all over the place.
* Python 3.11 needs an async decorator.
* Adding Redis as a service container.
* Removing `async-timeout` dependency.
* Refactoring using `event_loop` fixture.
* Refactoring using `tempfile` as a context manager.
* Mark `aiohttp` tests as failing on Py3.11 - first time ever - and add a similar test with `httpx`.
* Bump version.
Copy file name to clipboardExpand all lines: Makefile
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
3
3
install-dev-requirements:
4
4
pip install -U pip
5
-
pip install pipenv
5
+
pip install pipenv pre-commit
6
6
7
7
install-test-requirements:
8
8
pipenv install --dev
9
-
pipenv run python -c "import pipfile; pf = pipfile.load('Pipfile'); print('\n'.join(package+version for package, version in pf.data['default'].items()))"> requirements.txt
9
+
pipenv run python -c "import pipfile; pf = pipfile.load('Pipfile'); print('\n'.join(package+version if version != '*' else package for package, version in pf.data['default'].items()))"> requirements.txt
0 commit comments