Skip to content

Commit 01392ee

Browse files
committed
Do not add doc requirements to test requirements
Unfortunately, Sphinx 5 cannot coexist with Flask 4.
1 parent 6269f7d commit 01392ee

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Webware for Python 3
22

3-
Webware for Python is a well-proven and platform-independent suite of Python packages and tools for developing object-oriented, web-based applications. The suite uses well known design patterns and includes Servlets, Python Server Pages (PSP), Task Scheduling, Session Management, and many other features. Webware is very modular and easily extended.
3+
Webware for Python is a well-proven and platform-independent suite of Python packages and tools for developing object-oriented, web-based applications. The suite uses well known design patterns and includes Servlets, Python Server Pages (PSP), Task Scheduling, Session Management, and many other features. Webware is very modular and can be easily extended.
44

55
Webware for Python 3 is the latest version of the suite, which has been adapted to use Python 3 instead of Python 2 and the WSGI standard instead of the custom Webware threaded application server and various adapters, but otherwise kept compatible with the legacy version.
66

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
with open('README.md') as fh:
1111
long_description = fh.read()
1212

13+
requireDocs = [
14+
'Sphinx>=5,<6', 'sphinx_rtd_theme>=1'
15+
]
1316
requireDev = [
1417
'Pygments>=2.12,<3', 'WebTest>=3,<4',
1518
'waitress>=2,<3', 'hupper>=1.10,<2',
1619
]
17-
requireDocs = [
18-
'Sphinx>=5,<6', 'sphinx_rtd_theme>=1'
19-
]
2020
requireExamples = [
2121
'DBUtils>=3,<4', 'dominate>=2.6,<3', 'yattag>=1.14,<2',
2222
'Pygments>=2.12,<3', 'Pillow>=8,<10'
@@ -25,8 +25,7 @@
2525
'psutil>=5.9,<6', 'flake8>=4,<5', 'pylint>=2.13.9,<3', 'tox>=3.25,<4',
2626
'pywin32>=300,<400;'
2727
'sys_platform=="win32" and implementation_name=="cpython"'
28-
] + requireDev + requireDocs + requireExamples
29-
28+
] + requireDev + requireExamples
3029

3130
setuptools.setup(
3231
name='Webware-for-Python',

0 commit comments

Comments
 (0)