Skip to content

Commit

Permalink
Merge pull request #117 from neon-jungle/lts-update
Browse files Browse the repository at this point in the history
Lts update
  • Loading branch information
seb-b authored Dec 30, 2023
2 parents b76b4a8 + 39b84fb commit f4da220
Show file tree
Hide file tree
Showing 5 changed files with 302 additions and 182 deletions.
15 changes: 5 additions & 10 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,40 +12,35 @@ stages:

head:
extends: .python_test
image: python:3.10
image: python:3.11
before_script:
- pip install .['testing']

lts_41:
image: python:3.10
extends: .python_test
before_script:
- pip install .['testing'] wagtail~=4.1 django~=4.1

lts_52:
image: python:3.10
image: python:3.11
extends: .python_test
before_script:
- pip install .['testing'] wagtail~=5.2 django~=4.2

flake8:
stage: lint
image: python:3.10
image: python:3.11
before_script:
- pip install flake8
script:
- flake8 wagtailvideos/ tests/

isort:
stage: lint
image: python:3.10
image: python:3.11
before_script:
- pip install isort -e .
script:
- isort --recursive --diff --check-only wagtailvideos/ tests/

build:
image: python:3.10
image: python:3.11
stage: release
before_script:
- pip install --upgrade setuptools wheel twine
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGELOG
=========

5.2
---

- Upped minimum wagtail version to latest LTS (5.2)


4.0.1
-----

Expand Down
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

setup(
name="wagtailvideos",
version="4.2.2",
version="5.2.0",
description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme,
author="Neon Jungle",
author_email="[email protected]",
url="https://github.com/neon-jungle/wagtailvideos",
install_requires=[
"wagtail>=4.2",
"wagtail>=5.2",
"Django>=3.2",
"django-enumchoicefield>=1.1.0",
"bcp47==0.0.4",
Expand All @@ -34,9 +34,11 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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",
"License :: OSI Approved :: BSD License",
],
Expand Down
34 changes: 34 additions & 0 deletions tests/app/migrations/0003_alter_customvideotrack_file_and_more.py

Large diffs are not rendered by default.

Loading

0 comments on commit f4da220

Please sign in to comment.