Skip to content

Commit ed9e7cf

Browse files
committed
drop Python 3.6 support
fixes #1640
1 parent cc72be4 commit ed9e7cf

File tree

6 files changed

+4
-141
lines changed

6 files changed

+4
-141
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [windows, ubuntu, macos]
15-
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
15+
python: ["3.7", "3.8", "3.9", "3.10"]
1616
platform: [x64]
1717

1818
steps:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ and other `PyObject` derived types when called from Python.
2828

2929

3030
### Changed
31-
- Drop support for Python 2, 3.4, and 3.5
31+
- Drop support for Python 2, 3.4, 3.5, and 3.6
3232
- `wchar_t` size aka `Runtime.UCS` is now determined at runtime
3333
- `clr.AddReference` may now throw errors besides `FileNotFoundException`, that provide more
3434
details about the cause of the failure

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ def finalize_options(self):
162162
"License :: OSI Approved :: MIT License",
163163
"Programming Language :: C#",
164164
"Programming Language :: Python :: 3",
165-
"Programming Language :: Python :: 3.6",
166165
"Programming Language :: Python :: 3.7",
167166
"Programming Language :: Python :: 3.8",
168167
"Programming Language :: Python :: 3.9",

src/runtime/Mixins/collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Implements collections.abc for common .NET types
3-
https://docs.python.org/3.6/library/collections.abc.html
3+
https://docs.python.org/3/library/collections.abc.html
44
"""
55

66
import collections.abc as col

src/runtime/Util.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal static class Util
1313
internal const string UnstableApiMessage =
1414
"This API is unstable, and might be changed or removed in the next minor release";
1515
internal const string MinimalPythonVersionRequired =
16-
"Only Python 3.6 or newer is supported";
16+
"Only Python 3.7 or newer is supported";
1717
internal const string InternalUseOnly =
1818
"This API is for internal use only";
1919

src/runtime/interop36.cs

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

0 commit comments

Comments
 (0)