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

6.0: drop Python 3.8, drop macos-12, update Zope/pip/st/buildout. #974

Merged
merged 1 commit into from
Dec 10, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/bare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
matrix:
python-version:
# Use the oldest supported Python version, as that may pull in more versions.
- "3.8"
- "3.9"
runs-on: ubuntu-latest
steps:
- name: locale
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/run-buildout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
os:
- ubuntu-latest
- windows-latest
- macos-12
- macos-13
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pip==24.2
setuptools==74.0.0
wheel==0.44.0
zc.buildout==3.1.0
pip==24.3.1
setuptools==75.3.0
wheel==0.45.1
zc.buildout==3.3

# Windows specific down here (has to be installed here, fails in buildout)
# Dependency of zope.sendmail:
Expand Down
12 changes: 5 additions & 7 deletions versions.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,21 @@
# Based on latest development Zope:
# extends = https://raw.githubusercontent.com/zopefoundation/Zope/master/versions.cfg
# Based on released Zope:
extends = https://zopefoundation.github.io/Zope/releases/5.10/versions.cfg
extends = https://zopefoundation.github.io/Zope/releases/5.11.1/versions.cfg


[versions]
# Basics
# !! keep in sync with requirements.txt !!
pip = 24.2
setuptools = 74.0.0
wheel = 0.44.0
zc.buildout = 3.1.0
pip = 24.3.1
setuptools = 75.3.0
wheel = 0.45.1
zc.buildout = 3.3

# windows specific
nt-svcutils = 2.13.0

# OVERRIDES
# Zope uses an older version for its Sphinx theme, which Plone does not use
docutils = 0.20.1

# CORE PLONE.
# These packages are what you get when installing Plone plus test dependencies,
Expand Down
Loading