Skip to content

Commit

Permalink
Django >=4.2 required
Browse files Browse the repository at this point in the history
  • Loading branch information
coady committed Oct 27, 2023
1 parent 530cfaf commit 51bf84b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
django-version: ['<4', '<4.2', '<5', '']
django-version: ['<5', '']
exclude:
- python-version: '3.11'
django-version: '<4'
- python-version: '3.8'
django-version: ''
- python-version: '3.9'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
Expand All @@ -18,5 +21,4 @@ jobs:
- run: python -m mkdocs gh-deploy --force
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_TOKEN }}
verbose: true
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## Unreleased
### Changed
* Python >=3.8 required
* Django >=4.2 required

## [1.5](https://pypi.org/project/django-model-values/1.5/) - 2022-08-03
### Changed
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ authors = [{name = "Aric Coady", email = "aric.coady@gmail.com"}]
keywords = ["values_list", "pandas", "column-oriented", "data", "mapper", "pattern", "orm"]
classifiers = [
"Development Status :: 6 - Mature",
"Framework :: Django :: 3",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
Expand All @@ -27,11 +24,12 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["django>=3.2"]
dependencies = ["django>=4.2"]

[project.urls]
Homepage = "https://github.com/coady/django-model-values"
Expand Down

0 comments on commit 51bf84b

Please # to comment.