Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit ec17f1a

Browse files
committed
Remove 3.6 support
1 parent 539a203 commit ec17f1a

File tree

3 files changed

+3
-165
lines changed

3 files changed

+3
-165
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99

1010
jobs:
1111
ci:
12-
runs-on: ubuntu-20.04 # 22.04 doesn't have Python 3.6
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v3
@@ -27,15 +27,10 @@ jobs:
2727
- name: Upgrade pip
2828
run: pip install --upgrade pip
2929

30-
- name: Install requirements (3.6)
31-
run: |
32-
pip install -r requirements-3.6.txt
33-
if: matrix.python-version == '3.6'
34-
3530
- name: Install requirements (3.7+)
3631
run: |
3732
pip install -r requirements.txt
38-
if: matrix.python-version != '3.6'
33+
3934

4035
- name: Black
4136
run: black --check django_filters-stubs/

requirements-3.6.txt

Lines changed: 0 additions & 156 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def find_stub_files(name):
4242
classifiers=[
4343
"Development Status :: 1 - Planning",
4444
"License :: OSI Approved :: MIT License",
45-
"Programming Language :: Python :: 3.6",
4645
"Programming Language :: Python :: 3.7",
4746
],
4847
)

0 commit comments

Comments
 (0)