Skip to content

Commit 6f41a15

Browse files
committed
- prepare release 6.0.1
1 parent f02701b commit 6f41a15

2 files changed

Lines changed: 9 additions & 12 deletions

File tree

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Change History
33
================
44

5-
6.0.1 (unreleased)
5+
6.0.1 (2025-04-13)
66
==================
77

88
- repozo: fix restoring on stdout.

setup.py

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,17 @@
1515
from setuptools import setup
1616

1717

18-
version = '6.0.1.dev0'
19-
20-
2118
def read(path):
2219
with open(path) as f:
2320
return f.read()
2421

2522

2623
long_description = read("README.rst") + "\n\n" + read("CHANGES.rst")
2724

28-
tests_require = [
29-
'manuel',
30-
'zope.testing',
31-
'zope.testrunner >= 4.4.6',
32-
]
3325

3426
setup(
3527
name="ZODB",
36-
version=version,
28+
version='6.0.1',
3729
author="Jim Fulton",
3830
author_email="jim@zope.com",
3931
maintainer="Zope Foundation and Contributors",
@@ -65,15 +57,20 @@ def read(path):
6557
],
6658
description=long_description.split('\n', 2)[1],
6759
long_description=long_description,
60+
long_description_content_type='text/x-rst',
6861
extras_require={
69-
'test': tests_require,
62+
'test': [
63+
'manuel',
64+
'zope.testing',
65+
'zope.testrunner >= 4.4.6',
66+
],
7067
'docs': [
7168
'Sphinx < 7',
7269
'ZODB',
7370
'j1m.sphinxautozconfig',
7471
'sphinx_rtd_theme',
7572
'sphinxcontrib_zopeext',
76-
]
73+
],
7774
},
7875
install_requires=[
7976
'persistent >= 4.4.0',

0 commit comments

Comments
 (0)