Skip to content

Commit

Permalink
update python & django versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed Mar 20, 2024
1 parent 1fd3d6b commit 0c8c054
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
28 changes: 12 additions & 16 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,20 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.11"]
django-version: [3.2.19, 4.1.9, 4.2.2]
drf-version: [3.14.0]
python-version:
- 3.8
- 3.9
- "3.10"
- "3.11"
- "3.12"
django-version: [5.0.3]
drf-version: [3.15.0]
include:
- python-version: "3.11"
django-version: "4.2.2"
- python-version: "3.12"
django-version: "5.0.3"
drf-version: none
- python-version: "3.10"
django-version: 4.2.2
drf-version: 3.14.0
- python-version: 3.9
django-version: 4.2.2
drf-version: 3.14.0
- python-version: 3.8
django-version: 4.2.2
drf-version: 3.14.0
- python-version: 3.7
django-version: 3.2.19
- python-version: "3.12"
django-version: 4.2.11
drf-version: 3.14.0
steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,24 @@ authors = [
]
description = "Enhanced support for natural keys in Django and Django REST Framework."
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = {text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Topic :: Database",
]
dependencies = [
Expand All @@ -39,6 +39,6 @@ Documentation = "https://wq.io/"
Source = "https://github.com/wq/django-natural-keys"
"Release Notes" = "https://github.com/wq/django-natural-keys/releases"
Issues = "https://github.com/wq/django-natural-keys/issues"
CI = "https://github.com/wq/django-natural-keys/actions/workflows/test.yml"
Tests = "https://github.com/wq/django-natural-keys/actions/workflows/test.yml"

[tool.setuptools_scm]

0 comments on commit 0c8c054

Please sign in to comment.