Browse Source
Merge pull request #14237 from gavindsouza/py37+
fix(develop): Drop support for Python 3.6
version-14
gavin
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
4 additions and
4 deletions
-
.github/workflows/docs-checker.yml
-
.github/workflows/publish-assets-develop.yml
-
.github/workflows/publish-assets-releases.yml
-
setup.py
|
|
@@ -12,7 +12,7 @@ jobs: |
|
|
|
- name: 'Setup Environment' |
|
|
|
uses: actions/setup-python@v2 |
|
|
|
with: |
|
|
|
python-version: 3.6 |
|
|
|
python-version: 3.7 |
|
|
|
|
|
|
|
- name: 'Clone repo' |
|
|
|
uses: actions/checkout@v2 |
|
|
|
|
|
@@ -18,7 +18,7 @@ jobs: |
|
|
|
node-version: 14 |
|
|
|
- uses: actions/setup-python@v2 |
|
|
|
with: |
|
|
|
python-version: '3.6' |
|
|
|
python-version: '3.7' |
|
|
|
- name: Set up bench and build assets |
|
|
|
run: | |
|
|
|
npm install -g yarn |
|
|
|
|
|
@@ -21,7 +21,7 @@ jobs: |
|
|
|
python-version: '12.x' |
|
|
|
- uses: actions/setup-python@v2 |
|
|
|
with: |
|
|
|
python-version: '3.6' |
|
|
|
python-version: '3.7' |
|
|
|
- name: Set up bench and build assets |
|
|
|
run: | |
|
|
|
npm install -g yarn |
|
|
|
|
|
@@ -57,5 +57,5 @@ setup( |
|
|
|
{ |
|
|
|
'clean': CleanCommand |
|
|
|
}, |
|
|
|
python_requires='>=3.6' |
|
|
|
python_requires='>=3.7' |
|
|
|
) |