Skip to content

Commit 6cb3142

Browse files
committed
Fix README
1 parent 1a7f863 commit 6cb3142

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

README.rst

+13-10
Original file line numberDiff line numberDiff line change
@@ -420,16 +420,19 @@ Maintenance
420420
- Run tox: `tox`
421421
- Add a python version if the latest Python is not in `tox.ini`
422422

423-
Notes for Ubuntu:
424-
- My experience today installing python 3.5 to 3.11 on Ubuntu 18 was surprisingly not smooth. I had to use these
425-
commands:
426-
- sudo apt install python3.5 (ok)
427-
- sudo apt install python3.x-distutils for x=9,10,11
428-
- had to use `python -m pip` intead of just `pip` otherwise wrong version would get found
429-
- used `sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.x 1` for all x
430-
- used `sudo update-alternatives --config python` to choose which python active
431-
- had to install setuptools from git repo otherwise weird pip error (used https://stackoverflow.com/a/69573368/869951)
432-
- note however that once the correct tox installed,
423+
.. note::
424+
425+
Notes for Ubuntu:
426+
427+
My experience today installing python 3.5 to 3.11 on Ubuntu 18 was surprisingly not smooth. I had to use these commands:
428+
429+
* sudo apt install python3.5 (ok)
430+
* sudo apt install python3.x-distutils for x=9,10,11
431+
* had to use `python -m pip` intead of just `pip` otherwise wrong version would get found
432+
* used `sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.x 1` for all x
433+
* used `sudo update-alternatives --config python` to choose which python active
434+
* had to install setuptools from git repo otherwise weird pip error (used https://stackoverflow.com/a/69573368/869951)
435+
* note however that once the correct tox installed,
433436

434437

435438
Acknowledgments

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
name='nose2pytest',
66
version='1.0.10',
77
packages=['nose2pytest'],
8+
long_description=open('README.rst', encoding="UTF-8").read(),
9+
long_description_content_type="text/x-rst",
810
entry_points={
911
'console_scripts': [
1012
'nose2pytest = nose2pytest.script:main',

0 commit comments

Comments
 (0)