Skip to content

Commit

Permalink
Support Plone 5.2. (Implements #77)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Nov 12, 2024
1 parent 06684b8 commit b70d8a6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
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
""",
)

0 comments on commit b70d8a6

Please sign in to comment.