Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 397b0b4

Browse files
authored
Merge pull request #685 from pythonnet/drop-py33
drop python 3.3 support
2 parents d27ab61 + 94af550 commit 397b0b4

File tree

4 files changed

+1
-157
lines changed

4 files changed

+1
-157
lines changed

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ matrix:
2222
- dotnet-hostfxr-2.0.0
2323
- dotnet-runtime-2.0.0
2424
- dotnet-sdk-2.0.0
25-
- python: 3.3
26-
env: *xplat-env
27-
addons: *xplat-addons
28-
2925
- python: 3.4
3026
env: *xplat-env
3127
addons: *xplat-addons
@@ -47,9 +43,6 @@ matrix:
4743
- BUILD_OPTS=
4844
- NUNIT_PATH=./packages/NUnit.*/tools/nunit3-console.exe
4945

50-
- python: 3.3
51-
env: *classic-env
52-
5346
- python: 3.4
5447
env: *classic-env
5548

appveyor.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,13 @@ environment:
1717
matrix:
1818
- PYTHON_VERSION: 2.7
1919
BUILD_OPTS: --xplat
20-
- PYTHON_VERSION: 3.3
21-
BUILD_OPTS: --xplat
2220
- PYTHON_VERSION: 3.4
2321
BUILD_OPTS: --xplat
2422
- PYTHON_VERSION: 3.5
2523
BUILD_OPTS: --xplat
2624
- PYTHON_VERSION: 3.6
2725
BUILD_OPTS: --xplat
2826
- PYTHON_VERSION: 2.7
29-
- PYTHON_VERSION: 3.3
3027
- PYTHON_VERSION: 3.4
3128
- PYTHON_VERSION: 3.5
3229
- PYTHON_VERSION: 3.6

src/runtime/interop33.cs

Lines changed: 0 additions & 143 deletions
This file was deleted.

src/runtime/runtime.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,6 @@ public class Runtime
139139
#if PYTHON27
140140
internal const string _pyversion = "2.7";
141141
internal const string _pyver = "27";
142-
#elif PYTHON33
143-
internal const string _pyversion = "3.3";
144-
internal const string _pyver = "33";
145142
#elif PYTHON34
146143
internal const string _pyversion = "3.4";
147144
internal const string _pyver = "34";
@@ -155,7 +152,7 @@ public class Runtime
155152
internal const string _pyversion = "3.7";
156153
internal const string _pyver = "37";
157154
#else
158-
#error You must define one of PYTHON33 to PYTHON37 or PYTHON27
155+
#error You must define one of PYTHON34 to PYTHON37 or PYTHON27
159156
#endif
160157

161158
#if MONO_LINUX || MONO_OSX // Linux/macOS use dotted version string

0 commit comments

Comments
 (0)