Skip to content

Commit

Permalink
drop support for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
DavisRayM committed Dec 16, 2024
1 parent 0afd26e commit 9e48180
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Upgrade pip
run: pip install --upgrade pip

- name: Install requirements (3.7+)
- name: Install requirements (3.8+)
run: |
pip install -r requirements.txt
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def find_stub_files(name):

setup(
name="django-filter-stubs",
version="0.1.3",
version="0.1.4",
description="PEP-484 stubs for django-filter",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -33,6 +33,7 @@ def find_stub_files(name):
author_email="davisraymondmuro@outlook.com",
packages=["django_filters-stubs"],
package_data={"django_filters-stubs": find_stub_files("django_filters-stubs")},
python_requires=">=3.8",
install_requires=[
"mypy>=0.750",
"django-stubs>=1.3.0",
Expand All @@ -42,6 +43,6 @@ def find_stub_files(name):
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)

0 comments on commit 9e48180

Please sign in to comment.