Skip to content

Commit

Permalink
Remove 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
palfrey committed Jan 6, 2023
1 parent 539a203 commit ec17f1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 165 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ on:

jobs:
ci:
runs-on: ubuntu-20.04 # 22.04 doesn't have Python 3.6
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -27,15 +27,10 @@ jobs:
- name: Upgrade pip
run: pip install --upgrade pip

- name: Install requirements (3.6)
run: |
pip install -r requirements-3.6.txt
if: matrix.python-version == '3.6'

- name: Install requirements (3.7+)
run: |
pip install -r requirements.txt
if: matrix.python-version != '3.6'

- name: Black
run: black --check django_filters-stubs/
Expand Down
156 changes: 0 additions & 156 deletions requirements-3.6.txt

This file was deleted.

1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def find_stub_files(name):
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)

0 comments on commit ec17f1a

Please sign in to comment.