From a95f9ade37f035a78d1a8a78ba7a45b1c461e348 Mon Sep 17 00:00:00 2001 From: ale-rt Date: Thu, 30 Jan 2025 07:29:41 +0100 Subject: [PATCH 1/2] Prepare for plone.meta --- setup.cfg | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/setup.cfg b/setup.cfg index 58609f1..e69de29 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,17 +0,0 @@ -[isort] -# for details see -# https://docs.plone.org/develop/styleguide/python.html#grouping-and-sorting -force_alphabetical_sort = True -force_single_line = True -lines_after_imports = 2 -line_length = 88 -multi_line_output=3 -include_trailing_comma=True -not_skip = __init__.py - -[flake8] -exclude = bootstrap.py,docs,*.egg.,omelette -max-complexity = 15 -max-line-length = 88 -inline-quotes = " -ignore = C901,E203,W503 From c175e7c874fff8adf66cc5704cb2514b6972fec9 Mon Sep 17 00:00:00 2001 From: ale-rt Date: Thu, 17 Apr 2025 17:31:48 +0200 Subject: [PATCH 2/2] Update classifiers --- .github/workflows/tests.yml | 8 ++++---- setup.cfg | 17 +++++++++++++++++ setup.py | 7 +++++++ 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 37676bb..0900d2e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ on: jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: config: @@ -21,13 +21,13 @@ jobs: - ["Py3.7-Plone5.2", "3.7", "5.2"] - ["Py3.8-Plone5.2", "3.8", "5.2"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.config[1] }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.config[1] }} - name: Pip cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.cache/pip diff --git a/setup.cfg b/setup.cfg index e69de29..58609f1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -0,0 +1,17 @@ +[isort] +# for details see +# https://docs.plone.org/develop/styleguide/python.html#grouping-and-sorting +force_alphabetical_sort = True +force_single_line = True +lines_after_imports = 2 +line_length = 88 +multi_line_output=3 +include_trailing_comma=True +not_skip = __init__.py + +[flake8] +exclude = bootstrap.py,docs,*.egg.,omelette +max-complexity = 15 +max-line-length = 88 +inline-quotes = " +ignore = C901,E203,W503 diff --git a/setup.py b/setup.py index 1bf5548..f2a50e5 100644 --- a/setup.py +++ b/setup.py @@ -25,12 +25,19 @@ "Framework :: Plone :: Addon", "Framework :: Plone :: 5.1", "Framework :: Plone :: 5.2", + "Framework :: Plone :: 6.0", + "Framework :: Plone :: 6.1", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "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", + "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries :: Python Modules", ], keywords="plone workspace collaboration",