1
Fork 0

upgrading tests and required wagtail version (#26)

* upgrading tests and required wagtail version
fix #24

* add support for py 3.10
This commit is contained in:
Nick Travis 2022-10-27 17:13:59 -04:00 committed by GitHub
parent 34f43a2e25
commit 9381d0ef0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 451 additions and 276 deletions

View file

@ -1 +1 @@
3.6.6
3.10.7

View file

@ -1,14 +1,13 @@
dist: focal
language: python
python:
- 3.7
- 3.8
- 3.9
- 3.10
cache: pip
jobs:
fast_finish: true
allow_failures:
- python: 3.8
- python: 3.9
install:
- pip install -U pip setuptools
- pip install .

View file

@ -1,3 +1,11 @@
# 0.4.2
Upgrade required version of Wagtail to >=2.15.x (feature implemented in 0.4.0)
# 0.4.1
Support Django 4.x and Wagtail 3.x
# 0.4.0
Fix issue when upgrading to Wagtail 2.14.x.

704
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "wagtail-draftail-snippet"
version = "0.4.1"
version = "0.4.2"
description = "Associate RichTextBlock text content to a snippet model."
authors = ["Parbhat Puri <me@parbhatpuri.com>", "Adam Hill <ahill@fool.com>", "Brady Moe <bmoe872@gmail.com>"]
repository = "https://github.com/themotleyfool/wagtail-draftail-snippet"
@ -9,7 +9,7 @@ license = "BSD-3-Clause"
[tool.poetry.dependencies]
python = ">=3.6"
wagtail = ">=2.5.0 <4.0"
wagtail = ">=2.15.0, <4.0"
[tool.poetry.dev-dependencies]
pytest = "^3.0"

View file

@ -22,7 +22,7 @@ setup(
long_description=readme,
long_description_content_type="text/markdown",
name="wagtail-draftail-snippet",
version="0.4.1",
version="0.4.2",
description="Associate RichTextBlock text content to a snippet model.",
python_requires="==3.*,>=3.6.0",
project_urls={
@ -38,7 +38,7 @@ setup(
"templates/wagtail_draftail_snippet/*.html",
]
},
install_requires=["wagtail>=2.5.0,<4.0"],
install_requires=["wagtail>=2.15.0,<4.0"],
extras_require={
"dev": [
"black==19.*,>=19.10.0",