Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit f03b170

Browse files
authored
Update Python version support. (#11)
* Drop support for Python 3.8.
1 parent 1ba4c3f commit f03b170

9 files changed

+24
-19
lines changed

.github/workflows/pre-commit.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,22 @@ env:
1515

1616
jobs:
1717
pre-commit:
18+
permissions:
19+
contents: read
20+
pull-requests: write
1821
name: linting
1922
runs-on: ubuntu-latest
2023
steps:
2124
- uses: actions/checkout@v4
2225
- uses: actions/setup-python@v5
2326
with:
2427
python-version: 3.x
25-
- uses: pre-commit/[email protected]
28+
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd #v3.0.1
2629
with:
2730
extra_args: --all-files --show-diff-on-failure
2831
env:
2932
PRE_COMMIT_COLOR: always
30-
- uses: pre-commit-ci/lite-action@v1.0.2
33+
- uses: pre-commit-ci/lite-action@5d6cc0eb514c891a40562a58a8e71576c5c7fb43 #v1.1.0
3134
if: always()
3235
with:
3336
msg: Apply pre-commit code formatting

.github/workflows/tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212

1313
jobs:
1414
build:
15+
permissions:
16+
contents: read
17+
pull-requests: write
1518
strategy:
1619
# We want to see all failures:
1720
fail-fast: false
@@ -21,7 +24,6 @@ jobs:
2124
config:
2225
# [Python version, tox env]
2326
- ["3.11", "release-check"]
24-
- ["3.8", "py38"]
2527
- ["3.9", "py39"]
2628
- ["3.10", "py310"]
2729
- ["3.11", "py311"]
@@ -35,6 +37,8 @@ jobs:
3537
name: ${{ matrix.config[1] }}
3638
steps:
3739
- uses: actions/checkout@v4
40+
with:
41+
persist-credentials: false
3842
- name: Set up Python
3943
uses: actions/setup-python@v5
4044
with:

.meta.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
33
[meta]
44
template = "pure-python"
5-
commit-id = "baf6089f"
5+
commit-id = "faa4ee89"
66

77
[python]
88
with-windows = false

.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
minimum_pre_commit_version: '3.6'
44
repos:
55
- repo: https://github.com/pycqa/isort
6-
rev: "5.13.2"
6+
rev: "6.0.0"
77
hooks:
88
- id: isort
99
- repo: https://github.com/hhatto/autopep8
10-
rev: "v2.3.1"
10+
rev: "v2.3.2"
1111
hooks:
1212
- id: autopep8
1313
args: [--in-place, --aggressive, --aggressive]
1414
- repo: https://github.com/asottile/pyupgrade
15-
rev: v3.17.0
15+
rev: v3.19.1
1616
hooks:
1717
- id: pyupgrade
18-
args: [--py38-plus]
18+
args: [--py39-plus]
1919
- repo: https://github.com/isidentical/teyit
2020
rev: 0.4.3
2121
hooks:

CHANGES.rst

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ CHANGES
55
3.1 (unreleased)
66
----------------
77

8+
- Drop support for Python 3.8.
9+
810
- Add support for Python 3.13.
911

1012
- Drop support for Python 3.7.

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!--
22
Generated from:
33
https://github.com/zopefoundation/meta/tree/master/config/pure-python
4-
-->
4+
-->
55
# Contributing to zopefoundation projects
66

77
The projects under the zopefoundation GitHub organization are open source and

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
44

55
[build-system]
6-
requires = ["setuptools < 74"]
6+
requires = ["setuptools <= 75.6.0"]
77
build-backend = "setuptools.build_meta"
88

99
[tool.coverage.run]

setup.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def read(*rnames):
4040
name='z3c.macro',
4141
version='3.1.dev0',
4242
author="Roger Ineichen and the Zope Community",
43-
author_email="zope-dev@zope.org",
43+
author_email="zope-dev@zope.dev",
4444
description="Simpler definition of ZPT macros.",
4545
long_description=(
4646
read('README.rst')
@@ -54,7 +54,7 @@ def read(*rnames):
5454
+ '\n\n' +
5555
read('CHANGES.rst')
5656
),
57-
license="ZPL 2.1",
57+
license="ZPL-2.1",
5858
keywords="zope3 macro pagetemplate zpt",
5959
classifiers=[
6060
'Development Status :: 5 - Production/Stable',
@@ -63,7 +63,6 @@ def read(*rnames):
6363
'License :: OSI Approved :: Zope Public License',
6464
'Programming Language :: Python',
6565
'Programming Language :: Python :: 3',
66-
'Programming Language :: Python :: 3.8',
6766
'Programming Language :: Python :: 3.9',
6867
'Programming Language :: Python :: 3.10',
6968
'Programming Language :: Python :: 3.11',
@@ -80,7 +79,7 @@ def read(*rnames):
8079
packages=find_packages('src'),
8180
package_dir={'': 'src'},
8281
namespace_packages=['z3c'],
83-
python_requires='>=3.8',
82+
python_requires='>=3.9',
8483
extras_require={
8584
'test': TESTS_REQUIRE,
8685
'chameleon': CHAMELEON_REQUIRES,
@@ -95,8 +94,6 @@ def read(*rnames):
9594
'zope.schema',
9695
'zope.tales',
9796
],
98-
tests_require=TESTS_REQUIRE,
99-
test_suite='z3c.macro.tests.test_suite',
10097
include_package_data=True,
10198
zip_safe=False,
10299
)

tox.ini

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ minversion = 3.18
55
envlist =
66
release-check
77
lint
8-
py38
98
py39
109
py310
1110
py311
@@ -19,7 +18,7 @@ usedevelop = true
1918
package = wheel
2019
wheel_build_env = .pkg
2120
deps =
22-
setuptools < 74
21+
setuptools <= 75.6.0
2322
pypy3: cffi
2423
commands =
2524
zope-testrunner --test-path=src {posargs:-vc}
@@ -37,7 +36,7 @@ description = ensure that the distribution is ready to release
3736
basepython = python3
3837
skip_install = true
3938
deps =
40-
setuptools < 74
39+
setuptools <= 75.6.0
4140
twine
4241
build
4342
check-manifest

0 commit comments

Comments
 (0)