Unverified Commit f4da2207 authored by Seb Brown's avatar Seb Brown Committed by GitHub
Browse files

Merge pull request #117 from neon-jungle/lts-update

Lts update
parents b76b4a8a 39b84fb0
...@@ -12,25 +12,20 @@ stages: ...@@ -12,25 +12,20 @@ stages:
head: head:
extends: .python_test extends: .python_test
image: python:3.10 image: python:3.11
before_script: before_script:
- pip install .['testing'] - 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: lts_52:
image: python:3.10 image: python:3.11
extends: .python_test extends: .python_test
before_script: before_script:
- pip install .['testing'] wagtail~=5.2 django~=4.2 - pip install .['testing'] wagtail~=5.2 django~=4.2
flake8: flake8:
stage: lint stage: lint
image: python:3.10 image: python:3.11
before_script: before_script:
- pip install flake8 - pip install flake8
script: script:
...@@ -38,14 +33,14 @@ flake8: ...@@ -38,14 +33,14 @@ flake8:
isort: isort:
stage: lint stage: lint
image: python:3.10 image: python:3.11
before_script: before_script:
- pip install isort -e . - pip install isort -e .
script: script:
- isort --recursive --diff --check-only wagtailvideos/ tests/ - isort --recursive --diff --check-only wagtailvideos/ tests/
build: build:
image: python:3.10 image: python:3.11
stage: release stage: release
before_script: before_script:
- pip install --upgrade setuptools wheel twine - pip install --upgrade setuptools wheel twine
......
CHANGELOG CHANGELOG
========= =========
5.2
---
- Upped minimum wagtail version to latest LTS (5.2)
4.0.1 4.0.1
----- -----
......
...@@ -10,14 +10,14 @@ from setuptools import find_packages, setup # noqa: E4 ...@@ -10,14 +10,14 @@ from setuptools import find_packages, setup # noqa: E4
setup( setup(
name="wagtailvideos", name="wagtailvideos",
version="4.2.2", version="5.2.0",
description="A wagtail module for uploading and displaying videos in various codecs.", description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme, long_description=readme,
author="Neon Jungle", author="Neon Jungle",
author_email="developers@neonjungle.studio", author_email="developers@neonjungle.studio",
url="https://github.com/neon-jungle/wagtailvideos", url="https://github.com/neon-jungle/wagtailvideos",
install_requires=[ install_requires=[
"wagtail>=4.2", "wagtail>=5.2",
"Django>=3.2", "Django>=3.2",
"django-enumchoicefield>=1.1.0", "django-enumchoicefield>=1.1.0",
"bcp47==0.0.4", "bcp47==0.0.4",
...@@ -34,9 +34,11 @@ setup( ...@@ -34,9 +34,11 @@ setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django", "Framework :: Django",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
], ],
......
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment