Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ jobs:
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
ignore_dev_requirements: True
poetry_version: 1.5.1
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
strategy:
matrix:
python-version:
- '3.7'
- 'pypy-3.7'
- '3.8'
- 'pypy-3.8'
- '3.9'
Expand All @@ -31,6 +29,8 @@ jobs:

- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.5.1

- name: Install dependencies
run: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ This project was originally forked from [django-url-filter](https://github.com/m

## [Unreleased]

### Removed

- Support for Python3.7

## [0.4.3] - 2023-05-04

### Added
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
[tox]
envlist =
{py37,py38,py39,py310,py311,pypy36,pypy37,pypy38,pypy39}-django32
{py38,py39,py310,py311,pypy38,pypy39}-django32
{py38,py39,py310,py311,pypy38,pypy39}-django40

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
pypy-3.7: pypy37
pypy-3.8: pypy38
pypy-3.9: pypy39

Expand Down