README.md: Remove references to Python 2.7 from README.md (#1704) (#1818)

Co-Authored-By: Corey McCandless <cmccandless@users.noreply.github.com>
This commit is contained in:
John Luiz
2019-06-10 09:39:34 -03:00
committed by Corey McCandless
parent 78cddc9207
commit a1581af8a9

View File

@@ -31,14 +31,14 @@ A list of missing exercise can be found here: https://github.com/exercism/python
### Testing ### Testing
All exercises must be compatible with Python versions 2.7 and 3.4 upwards. All exercises must be compatible with Python version 3.4 upwards.
To test a single exercise (e.g., with Python 2.7): To test a single exercise:
``` ```
python2.7 test/check-exercises.py [exercise-name] python3 test/check-exercises.py [exercise-name]
``` ```
To test all exercises (e.g., with Python 3): To test all exercises:
``` ```
python3 test/check-exercises.py python3 test/check-exercises.py
``` ```