Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 61b0b7f

Browse files
authoredOct 8, 2022
Merge branch 'main' into bitfields
2 parents deba719 + e82d977 commit 61b0b7f

File tree

402 files changed

+56874
-12923
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+56874
-12923
lines changed
 

‎.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ Include/internal/pycore_runtime_init_generated.h generated
7373
Include/opcode.h generated
7474
Include/token.h generated
7575
Lib/keyword.py generated
76+
Lib/test/levenshtein_examples.json generated
7677
Lib/test/test_stable_abi_ctypes.py generated
7778
Lib/token.py generated
7879
Objects/typeslots.inc generated

‎.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,13 @@ jobs:
3131
runs-on: ubuntu-latest
3232
outputs:
3333
run_tests: ${{ steps.check.outputs.run_tests }}
34-
run_ssl_tests: ${{ steps.check.outputs.run_ssl_tests }}
3534
steps:
3635
- uses: actions/checkout@v3
3736
- name: Check for source changes
3837
id: check
3938
run: |
4039
if [ -z "$GITHUB_BASE_REF" ]; then
4140
echo '::set-output name=run_tests::true'
42-
echo '::set-output name=run_ssl_tests::true'
4341
else
4442
git fetch origin $GITHUB_BASE_REF --depth=1
4543
# git diff "origin/$GITHUB_BASE_REF..." (3 dots) may be more
@@ -56,7 +54,6 @@ jobs:
5654
#
5755
# https://github.com/python/core-workflow/issues/373
5856
git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name=run_tests::true' || true
59-
git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE '(ssl|hashlib|hmac|^.github)' && echo '::set-output name=run_ssl_tests::true' || true
6057
fi
6158
6259
check_generated_files:
@@ -230,7 +227,7 @@ jobs:
230227
name: 'Ubuntu SSL tests with OpenSSL'
231228
runs-on: ubuntu-20.04
232229
needs: check_source
233-
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_ssl_tests == 'true'
230+
if: needs.check_source.outputs.run_tests == 'true'
234231
strategy:
235232
fail-fast: false
236233
matrix:

0 commit comments

Comments
 (0)
Please sign in to comment.