Skip to content

Commit

Permalink
README: compatible versions were not up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
DylannCordel committed Sep 4, 2024
1 parent 10bd30a commit 751876b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 15 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

# Current configuration:
# - python 3.7, django 3.2, wagtail 4.1
# - python 3.7, django 3.2, wagtail 4.2
# - python 3.7, django 3.2, wagtail 5.0
# - python 3.9, django 4.2, wagtail 5.0
# - python 3.9, django 4.2, wagtail 5.1
# - python 3.11, django 4.2, wagtail 5.1
# - python 3.11, django main, wagtail main

jobs:
test:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.2.1 - 2024-09-04

* fix README and setup.cfg for compatible django/wagtail/python versions which were not up to date

# 0.2.0 - 2024-09-03

* remove support of wagtail < 5.0
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Wagtail Parler 🧀 🐦

[![Stable Version](https://img.shields.io/pypi/v/wagtail-parler?color=blue)](https://pypi.org/project/wagtail-parler/)
![](https://img.shields.io/badge/python-3.7%20to%203.11-blue)
![](https://img.shields.io/badge/django-3.2%20to%204.2-blue)
![](https://img.shields.io/badge/python-3.9%20to%203.11-blue)
![](https://img.shields.io/badge/django-4.2%20to%205.0-blue)
![](https://img.shields.io/badge/wagtail-5.0%20to%206.2-blue)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
![](https://img.shields.io/badge/coverage-100%25-green)
[![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](https://mypy-lang.org/)
Expand All @@ -25,10 +26,10 @@ wagtail's snippets.

This app is tested to runs with:

* Django 3.2, 4.2
* Wagtail 4.1, 4.2, 5.0, 5.1
* Django 4.2, 5.0
* Wagtail 5.0, 5.1, 5.2, 6.0, 6.1, 6.2
* Parler 2.3 (probably older ones to, it's just not tested)
* Python 3.7, 3.9, 3.11
* Python 3.9, 3.11

To ensure code quality and consistency:

Expand Down
15 changes: 14 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Framework :: Django
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Framework :: Wagtail
Framework :: Wagtail :: 5.0
Framework :: Wagtail :: 5.1
Framework :: Wagtail :: 5.2
Framework :: Wagtail :: 6.0
Framework :: Wagtail :: 6.1
Framework :: Wagtail :: 6.2
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Software Development :: Libraries :: Application Frameworks
Expand All @@ -26,7 +39,7 @@ project_urls =
Tracker = https://github.com/webu/wagtail-parler/issues

[options]
python_requires = >=3.7
python_requires = >=3.9
packages = find:
include_package_data = true
zip_safe = false
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ envlist =
py39-django42-wagtail{50,51}
py311-django42-wagtail{51,52,60,61,62}
py{39,311}-django42-wagtailmain
py311-djangomain-wagtailmain
qa

[testenv]
Expand All @@ -16,6 +17,7 @@ basepython =

deps =
django42: Django>=4.2,<4.3
djangomain: https://github.com/django/django/archive/main.tar.gz
wagtail41: wagtail>=4.1,<4.2
wagtail42: wagtail>=4.2,<4.3
wagtail50: wagtail>=5.0,<5.1
Expand Down

0 comments on commit 751876b

Please sign in to comment.