Skip to content

Commit 497ab8f

Browse files
committed
Update Documentation For Minimum Requirements
1 parent 88a1ec3 commit 497ab8f

120 files changed

Lines changed: 120 additions & 120 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ A list of missing exercise can be found here: http://exercism.io/languages/pytho
2929

3030
### Testing
3131

32-
All exercises must be compatible with Python versions 2.7 and 3.3 upwards.
32+
All exercises must be compatible with Python versions 2.7 and 3.4 upwards.
3333

3434
To test a single exercise (e.g., with Python 2.7):
3535
```

config/exercise_readme.go.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ raise Exception("Meaningful message indicating the source of the error")
2323
To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
2424

2525
- Python 2.7: `py.test {{ .Spec.SnakeCaseName }}_test.py`
26-
- Python 3.3+: `pytest {{ .Spec.SnakeCaseName }}_test.py`
26+
- Python 3.4+: `pytest {{ .Spec.SnakeCaseName }}_test.py`
2727

2828
Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
2929
`python -m pytest {{ .Spec.SnakeCaseName }}_test.py`

docs/INSTALLATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
If Python isn't already available on your system follow the instructions at [the Hitchhiker's Guide to Python](http://docs.python-guide.org/en/latest/starting/installation/) to install Python on your computer.
44

5-
Exercism currently supports Python2.7 and Python 3.3+.
5+
Exercism currently supports Python2.7 and Python 3.4+.

exercises/accumulate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ raise Exception("Meaningful message indicating the source of the error")
4444
To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
4545

4646
- Python 2.7: `py.test accumulate_test.py`
47-
- Python 3.3+: `pytest accumulate_test.py`
47+
- Python 3.4+: `pytest accumulate_test.py`
4848

4949
Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
5050
`python -m pytest accumulate_test.py`

exercises/acronym/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ raise Exception("Meaningful message indicating the source of the error")
2626
To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
2727

2828
- Python 2.7: `py.test acronym_test.py`
29-
- Python 3.3+: `pytest acronym_test.py`
29+
- Python 3.4+: `pytest acronym_test.py`
3030

3131
Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
3232
`python -m pytest acronym_test.py`

exercises/all-your-base/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ raise Exception("Meaningful message indicating the source of the error")
5050
To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
5151

5252
- Python 2.7: `py.test all_your_base_test.py`
53-
- Python 3.3+: `pytest all_your_base_test.py`
53+
- Python 3.4+: `pytest all_your_base_test.py`
5454

5555
Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
5656
`python -m pytest all_your_base_test.py`

exercises/allergies/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ raise Exception("Meaningful message indicating the source of the error")
4848
To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
4949

5050
- Python 2.7: `py.test allergies_test.py`
51-
- Python 3.3+: `pytest allergies_test.py`
51+
- Python 3.4+: `pytest allergies_test.py`
5252

5353
Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
5454
`python -m pytest allergies_test.py`

exercises/alphametics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ raise Exception("Meaningful message indicating the source of the error")
5050
To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
5151

5252
- Python 2.7: `py.test alphametics_test.py`
53-
- Python 3.3+: `pytest alphametics_test.py`
53+
- Python 3.4+: `pytest alphametics_test.py`
5454

5555
Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
5656
`python -m pytest alphametics_test.py`

exercises/anagram/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ raise Exception("Meaningful message indicating the source of the error")
2525
To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
2626

2727
- Python 2.7: `py.test anagram_test.py`
28-
- Python 3.3+: `pytest anagram_test.py`
28+
- Python 3.4+: `pytest anagram_test.py`
2929

3030
Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
3131
`python -m pytest anagram_test.py`

exercises/armstrong-numbers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ raise Exception("Meaningful message indicating the source of the error")
3030
To run the tests, run the appropriate command below ([why they are different](https://github.com/pytest-dev/pytest/issues/1629#issue-161422224)):
3131

3232
- Python 2.7: `py.test armstrong_numbers_test.py`
33-
- Python 3.3+: `pytest armstrong_numbers_test.py`
33+
- Python 3.4+: `pytest armstrong_numbers_test.py`
3434

3535
Alternatively, you can tell Python to run the pytest module (allowing the same command to be used regardless of Python version):
3636
`python -m pytest armstrong_numbers_test.py`

0 commit comments

Comments
 (0)