Browse Source

Merge pull request #15569 from ankush/drop_py37

fix!: drop py3.7 support for v14
version-14
mergify[bot] 3 years ago
committed by GitHub
parent
commit
5feebe22b0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      .github/workflows/docs-checker.yml
  2. +1
    -1
      setup.py

+ 1
- 1
.github/workflows/docs-checker.yml View File

@@ -12,7 +12,7 @@ jobs:
- name: 'Setup Environment' - name: 'Setup Environment'
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: 3.7
python-version: 3.8


- name: 'Clone repo' - name: 'Clone repo'
uses: actions/checkout@v2 uses: actions/checkout@v2


+ 1
- 1
setup.py View File

@@ -57,5 +57,5 @@ setup(
{ {
'clean': CleanCommand 'clean': CleanCommand
}, },
python_requires='>=3.7'
python_requires='>=3.8'
) )

Loading…
Cancel
Save