Skip to content

Commit af6a705

Browse files
committed
Make test to pass using the same versions as expected
1 parent 891ce5e commit af6a705

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_versions.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
('python3.6 -m pip --version', "pip 20.0.1 from /home/docs/.pyenv/versions/3.6.12/lib/python3.6/site-packages/pip (python 3.6)"),
2323
('python3.7 -m pip --version', "pip 20.0.1 from /home/docs/.pyenv/versions/3.7.9/lib/python3.7/site-packages/pip (python 3.7)"),
2424
('python3.8 -m pip --version', "pip 20.0.1 from /home/docs/.pyenv/versions/3.8.6/lib/python3.8/site-packages/pip (python 3.8)"),
25-
('python3.9 -m pip --version', "pip 20.0.2 from /home/docs/.pyenv/versions/3.9.1/lib/python3.9/site-packages/pip (python 3.9)"),
25+
('python3.9 -m pip --version', "pip 20.0.1 from /home/docs/.pyenv/versions/3.9.1/lib/python3.9/site-packages/pip (python 3.9)"),
2626
# setuptools
2727
('python2 -c "import setuptools; print(setuptools.__version__)"', "44.0.0"),
2828
('python3.5 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
2929
('python3.6 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
3030
('python3.7 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
3131
('python3.8 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
32-
('python3.9 -c "import setuptools; print(setuptools.__version__)"', "45.2.0"),
32+
('python3.9 -c "import setuptools; print(setuptools.__version__)"', "45.1.0"),
3333
# virtualenv
3434
('python2 -m virtualenv --version', '16.7.9'),
3535
('python3.5 -m virtualenv --version', '16.7.9'),
3636
('python3.6 -m virtualenv --version', '16.7.9'),
3737
('python3.7 -m virtualenv --version', '16.7.9'),
3838
('python3.8 -m virtualenv --version', '16.7.9'),
39-
('python3.9 -m virtualenv --version', 'virtualenv 20.0.7 from /home/docs/.pyenv/versions/3.9.1/lib/python3.9/site-packages/virtualenv/__init__.py'),
39+
('python3.9 -m virtualenv --version', '16.7.9'),
4040
# others
4141
('node --version', 'v10.19.0'),
4242
('npm --version', '6.14.4'),

0 commit comments

Comments
 (0)