File tree 2 files changed +15
-10
lines changed
2 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -420,16 +420,19 @@ Maintenance
420
420
- Run tox: `tox `
421
421
- Add a python version if the latest Python is not in `tox.ini `
422
422
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,
433
436
434
437
435
438
Acknowledgments
Original file line number Diff line number Diff line change 5
5
name = 'nose2pytest' ,
6
6
version = '1.0.10' ,
7
7
packages = ['nose2pytest' ],
8
+ long_description = open ('README.rst' , encoding = "UTF-8" ).read (),
9
+ long_description_content_type = "text/x-rst" ,
8
10
entry_points = {
9
11
'console_scripts' : [
10
12
'nose2pytest = nose2pytest.script:main' ,
You can’t perform that action at this time.
0 commit comments