Skip to content

Commit 1ed25bd

Browse files
committed
Drop support for Python 3.3
Python 3.3 is EOL.
1 parent 5c839f1 commit 1ed25bd

File tree

4 files changed

+17
-24
lines changed

4 files changed

+17
-24
lines changed

.travis.yml

Lines changed: 14 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -23,50 +23,43 @@ matrix:
2323
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python2.7/lib/python2.7/sitecustomize.py"
2424
- os: linux
2525
# BUILD 3 -------------------
26-
python: 3.3
27-
env:
28-
# gcc 4.8.4 with c++98
29-
- XML_GENERATOR="castxml"
30-
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.3/lib/python3.3/sitecustomize.py"
31-
- os: linux
32-
# BUILD 4 -------------------
3326
python: 3.4
3427
env:
3528
# gcc 4.8.4 with c++98
3629
- XML_GENERATOR="castxml"
3730
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.4/lib/python3.4/sitecustomize.py"
3831
- os: linux
39-
# BUILD 5 -------------------
32+
# BUILD 4 -------------------
4033
python: 3.5
4134
env:
4235
# gcc 4.8.4 with c++98
4336
- XML_GENERATOR="castxml"
4437
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.5/lib/python3.5/sitecustomize.py"
4538
- os: linux
46-
# BUILD 6 -------------------
39+
# BUILD 5 -------------------
4740
python: 3.6
4841
env:
4942
# gcc 4.8.4 with c++98
5043
- XML_GENERATOR="castxml"
5144
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.6/lib/python3.6/sitecustomize.py"
5245
- os: linux
53-
# BUILD 7 -------------------
46+
# BUILD 6 -------------------
5447
python: pypy
5548
env:
5649
# gcc 4.8.4 with c++98
5750
- XML_GENERATOR="castxml"
5851
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/pypy/lib-python/2.7/sitecustomize.py"
5952
- PYPY=1
6053
- os: linux
61-
# BUILD 8 -------------------
54+
# BUILD 7 -------------------
6255
python: pypy3
6356
env:
6457
# gcc 4.8.4 with c++98
6558
- XML_GENERATOR="castxml"
6659
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/pypy3/lib-python/3/sitecustomize.py"
6760
- PYPY=1
6861
- os: linux
69-
# BUILD 9 -------------------
62+
# BUILD 8 -------------------
7063
python: 3.6
7164
env:
7265
# gcc 5.4.1 with c++98
@@ -80,29 +73,29 @@ matrix:
8073
packages:
8174
- g++-5
8275
- os: linux
83-
# BUILD 10 ------------------
76+
# BUILD 9 ------------------
8477
python: 3.6
8578
env:
8679
- XML_GENERATOR="castxml"
8780
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.6/lib/python3.6/sitecustomize.py"
8881
- os: linux
89-
# BUILD 11 ------------------
82+
# BUILD 10 ------------------
9083
python: 3.6
9184
env:
9285
# gcc 4.8.4 with c++03
9386
- XML_GENERATOR="castxml"
9487
- CPPSTD="-std=c++03"
9588
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.6/lib/python3.6/sitecustomize.py"
9689
- os: linux
97-
# BUILD 12 ------------------
90+
# BUILD 11 ------------------
9891
python: 3.6
9992
env:
10093
# gcc 4.8.4 with c++11
10194
- XML_GENERATOR="castxml"
10295
- CPPSTD="-std=c++11"
10396
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.6/lib/python3.6/sitecustomize.py"
10497
- os: linux
105-
# BUILD 13 ------------------
98+
# BUILD 12 ------------------
10699
python: 3.6
107100
env:
108101
# gcc 5.4.1 with c++11
@@ -117,7 +110,7 @@ matrix:
117110
packages:
118111
- g++-5
119112
- os: linux
120-
# BUILD 14 ------------------
113+
# BUILD 13 ------------------
121114
python: 3.6
122115
env:
123116
# gcc 5.4.1 with c++14
@@ -132,29 +125,29 @@ matrix:
132125
packages:
133126
- g++-5
134127
- os: osx
135-
# BUILD 15 ------------------
128+
# BUILD 14 ------------------
136129
osx_image: xcode7.3
137130
language: generic
138131
env:
139132
- XML_GENERATOR="castxml"
140133
- TRAVIS_PYTHON_VERSION="2"
141134
- SITECUSTOMIZELIBPATH="/usr/local/lib/python2.7/site-packages/sitecustomize.py"
142135
- os: osx
143-
# BUILD 16 ------------------
136+
# BUILD 15 ------------------
144137
osx_image: xcode7.3
145138
language: generic
146139
env:
147140
- XML_GENERATOR="castxml"
148141
- TRAVIS_PYTHON_VERSION="3"
149142
- SITECUSTOMIZELIBPATH="/usr/local/lib/python3.6/site-packages/sitecustomize.py"
150143
- os: linux
151-
# BUILD 17 ------------------
144+
# BUILD 16 ------------------
152145
python: 3.6
153146
env:
154147
- XML_GENERATOR="castxml-18032017"
155148
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.6/lib/python3.6/sitecustomize.py"
156149
- os: linux
157-
# BUILD 18 ------------------
150+
# BUILD 17 ------------------
158151
python: 3.6
159152
env:
160153
- XML_GENERATOR="castxml-18032017"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Version 2.0.0 (unreleased)
1010

1111
* Drop declarations.class_t.USE_DEMANGLED_AS_NAME
1212

13-
2. Drop support for ```Python 2.6``` and ```Python 3.2```
13+
2. Drop support for ```Python 2.6```, ```Python 3.2``` and ```Python 3.3```.
1414

1515
3. Deprecated all the `i_depend_on_them` methods from the `declaration_t`
1616
class hierarchy. Instead of using `decl.i_depend_on_them()`, please use the

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Install instructions can be found `here <http://pygccxml.readthedocs.io/en/maste
3333
Compatibility
3434
-------------
3535

36-
pygccxml is compatible with Python 2.7, 3.3, 3.4, 3.5, pypy and pypy3.
36+
pygccxml is compatible with Python 2.7, 3.4, 3.5, pypy and pypy3.
3737

3838
Documentation and examples
3939
--------------------------

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Installation instructions can be found here: :doc:`Installation <install>`
2020
Compatibility
2121
-------------
2222

23-
pygccxml is compatible with Python 2.7, 3.3, 3.4, 3.5, pypy and pypy3.
23+
pygccxml is compatible with Python 2.7, 3.4, 3.5, pypy and pypy3.
2424

2525
Documentation and examples
2626
--------------------------

0 commit comments

Comments
 (0)