Skip to content

Commit acf1f1f

Browse files
author
Elias Nygren
committed
drop python 3.2 support as python-future does not support it
1 parent 0786669 commit acf1f1f

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ python setup.py install
1919

2020
**Supported versions** (offline tests pass with tox):
2121

22-
* python 3.2
23-
* python 3.3
22+
* python 2.6
23+
* python 2.7
24+
* <del>python 3.2</del> removed due to python2/3 support
25+
* python 3.3
2426
* python 3.4
2527
* python 3.5
2628
* pypi3 2.4.0
@@ -34,7 +36,7 @@ python setup.py install
3436
* Scale horizontally by creating / destroying servers
3537
* Scale vertically by changing the RAM, CPU, storage specs of any server
3638
* Manage firewall (on/off and individual rules)
37-
* since 0.2: full management of firewall rules
39+
* since 0.2: full management of firewall rules
3840

3941
**TODO:**
4042
* Cloning of storages
@@ -173,11 +175,11 @@ Tests located in `project_root/tests/` directory. Run with:
173175
py.test tests/
174176
```
175177

176-
To test against python3.2=< and pypy3-2.4.0, run:
178+
To test against all supported python versions, run:
177179

178180
```python
179181
tox
180-
```
182+
```
181183

182184
The project also supplies a small test suite to test against the live API at `test/live_test.py`. This suite is NOT run with `py.test` as it will permanently remove all resources related to an account. It should only be run with a throwaway dev-only account when preparing for a new release. It is not shipped with PyPI releases. See source code on how to run the live tests.
183185

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py26, py27, py32, py33, py34, py35, pypy3
7+
envlist = py26, py27, py33, py34, py35, pypy3
88

99
[testenv]
1010
commands = py.test test/

0 commit comments

Comments
 (0)