Skip to content

Commit db709df

Browse files
authored
Merge pull request #66 from lydia-duncan/moreVersionMucking
Update setuptools used versions and set pytest to more recent version [simple, not reviewed] Looks like the problem is coming from more recent versions of packages that we pin for our requirements files. setuptools doesn't use the requirements files to install dependencies, so it needs the limits as well. While there, since the problem didn't seem to be pytest, pin pytest to the more recent version
2 parents 2749367 + 0726918 commit db709df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
packages=find_packages(exclude=('test',)),
4242
include_package_data=True,
4343
install_requires=[
44-
'docutils',
45-
'Sphinx',
44+
'docutils==0.16',
45+
'Sphinx==4.5.0',
4646
],
4747
namespace_packages=['sphinxcontrib']
4848
)

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
flake8==5.0.4
22
mock
3-
pytest==7.1.1
3+
pytest==7.1.2
44
pytest-cov
55
tox

0 commit comments

Comments
 (0)