summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSeth Morton <seth.m.morton@gmail.com>2022-12-18 21:24:50 -0800
committerSeth Morton <seth.m.morton@gmail.com>2022-12-18 21:24:50 -0800
commit9193b9c2e43d9cfa25633b85ead62d8a1fecd6cc (patch)
tree8ec3dbf6fecce5331712d09d8d97ed6be682f990 /.github
parent48b91687f2c98feabeb6d449134f5d104f46956e (diff)
downloadnatsort-9193b9c2e43d9cfa25633b85ead62d8a1fecd6cc.tar.gz
Remove 3.6 support
CI outright fails with this.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/code-quality.yml8
-rw-r--r--.github/workflows/tests.yml2
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml
index 89d31f2..c8b3eb0 100644
--- a/.github/workflows/code-quality.yml
+++ b/.github/workflows/code-quality.yml
@@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
- python-version: '3.6'
+ python-version: '3.8'
- name: Install black
run: pip install black
@@ -38,7 +38,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
- python-version: '3.6'
+ python-version: '3.8'
- name: Install Flake8
run: pip install flake8 flake8-import-order flake8-bugbear pep8-naming
@@ -56,7 +56,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
- python-version: '3.6'
+ python-version: '3.8'
- name: Install MyPy
run: pip install mypy hypothesis pytest pytest-mock fastnumbers
@@ -74,7 +74,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
- python-version: '3.6'
+ python-version: '3.8'
- name: Install Validators
run: pip install twine check-manifest
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index d78fdf9..62dc7c4 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
- python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
+ python-version: [3.7, 3.8, 3.9, "3.10"]
os: [ubuntu-latest]
extras: [false]
include: