Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Plone 5.2. (Implements #77) #78

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ name: Meta
on:
push:
branches:
- master
- 0.x
- main
pull_request:
branches:
- master
- 0.x
- main
workflow_dispatch:

Expand Down
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ GREEN=`tput setaf 2`
RESET=`tput sgr0`
YELLOW=`tput setaf 3`

# Set distributions still in development
DISTRIBUTIONS="blog"
ALLOWED_DISTRIBUTIONS="blog"

PLONE6=6.0-latest
PLONE6=5.2-latest

# Python checks
PYTHON?=python3
Expand Down
1 change: 1 addition & 0 deletions news/77.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Support Plone 5.2 [@ericof]
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Installer for the collective.blog package."""

from pathlib import Path
from setuptools import find_packages
from setuptools import setup
Expand All @@ -22,13 +23,9 @@
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: Addon",
"Framework :: Plone :: Distribution",
"Framework :: Plone :: 6.0",
"Framework :: Plone :: 5.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
Expand Down Expand Up @@ -69,6 +66,6 @@
[z3c.autoinclude.plugin]
target = plone
[console_scripts]
update_locale = collective.blog.locales.update:update_locale
update_blog_locale = collective.blog.locales.update:update_locale
""",
)
Empty file.
Empty file.
Loading