-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into misc/app-configure-timeout-ceil-threshold
- Loading branch information
Showing
21 changed files
with
165 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
with: | ||
python-version: 3.8 | ||
- name: Cache PyPI | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
with: | ||
key: pip-lint-${{ hashFiles('requirements/*.txt') }} | ||
path: ~/.cache/pip | ||
|
@@ -74,7 +74,7 @@ jobs: | |
twine check --strict dist/* | ||
- name: Making sure that CONTRIBUTORS.txt remains sorted | ||
run: | | ||
LC_ALL=C sort -c CONTRIBUTORS.txt | ||
LC_ALL=C sort --check --ignore-case CONTRIBUTORS.txt | ||
gen_llhttp: | ||
name: Generate llhttp sources | ||
|
@@ -87,7 +87,7 @@ jobs: | |
with: | ||
submodules: true | ||
- name: Cache llhttp generated files | ||
uses: actions/cache@v2 | ||
uses: actions/cache@v2.1.7 | ||
id: cache | ||
with: | ||
key: llhttp-${{ hashFiles('vendor/llhttp/package.json', 'vendor/llhttp/src/**/*') }} | ||
|
@@ -146,7 +146,7 @@ jobs: | |
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" # - name: Cache | ||
- name: Cache PyPI | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
with: | ||
key: pip-ci-${{ runner.os }}-${{ matrix.pyver }}-${{ matrix.no-extensions }}-${{ hashFiles('requirements/*.txt') }} | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
|
@@ -183,16 +183,18 @@ jobs: | |
fail_ci_if_error: false | ||
|
||
check: # This job does nothing and is only used for the branch protection | ||
if: always() | ||
|
||
needs: | ||
- test | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Report success of the test matrix | ||
run: >- | ||
print("All's good") | ||
shell: python | ||
- name: Decide whether the needed jobs succeeded or failed | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
jobs: ${{ toJSON(needs) }} | ||
|
||
pre-deploy: | ||
name: Pre-Deploy | ||
|
@@ -291,7 +293,7 @@ jobs: | |
run: | | ||
make cythonize | ||
- name: Build wheels | ||
uses: pypa/cibuildwheel@v2.2.2 | ||
uses: pypa/cibuildwheel@v2.3.0 | ||
env: | ||
CIBW_ARCHS_MACOS: x86_64 arm64 universal2 | ||
- uses: actions/upload-artifact@v2 | ||
|
@@ -324,7 +326,7 @@ jobs: | |
run: | | ||
tree dist | ||
- name: Make Release | ||
uses: aio-libs/create-release@v1.2.3 | ||
uses: aio-libs/create-release@v1.3.1 | ||
with: | ||
changes_file: CHANGES.rst | ||
name: aiohttp | ||
|
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
- name: Cache PyPI | ||
uses: actions/[email protected].6 | ||
uses: actions/[email protected].7 | ||
with: | ||
key: post-update-${{ hashFiles('requirements/*.txt') }} | ||
path: ~/.cache/pip | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Added clarification on configuring the app object with settings such as a db connection. |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
A new argument ``client_max_size`` was added to ``BaseRequest.clone`` method to allow overriding the request body size -- :user:`anesabml`. |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Use str.partition() instead of .split() with a limit and a check. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Fixed the CI check used in the branch protection to gate merging PR, now | ||
broken pull requests from ``Dependabot`` and others are not auto-merged | ||
silently anymore -- :user:`webknjaz`. |
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 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 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 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 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,4 +1,4 @@ | ||
-r typing-extensions.txt | ||
mypy==0.910; implementation_name=="cpython" | ||
pre-commit==2.15.0 | ||
pre-commit==2.16.0 | ||
pytest==6.2.5 |
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
Oops, something went wrong.