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.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",