| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent eaed5c2 commit 1f26a51
8 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,6 @@ python: | |||
| 5 | 5 | - 3.8 | |
| 6 | 6 | - 3.7 | |
| 7 | 7 | - 3.6 | |
| 8 | - - 3.5 | ||
| 9 | 8 | ||
| 10 | 9 | env: | |
| 11 | 10 | matrix: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,7 +10,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][]. | |||
| 10 | 10 | ### Added | |
| 11 | 11 | ||
| 12 | 12 | ### Changed | |
| 13 | - - Drop support for Python 2 | ||
| 13 | + - Drop support for Python 2, 3.4, and 3.5 | ||
| 14 | 14 | - `clr.AddReference` may now throw errors besides `FileNotFoundException`, that provide more | |
| 15 | 15 | details about the cause of the failure | |
| 16 | 16 | - `clr.AddReference` no longer adds ".dll" implicitly | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -21,12 +21,9 @@ environment: | |||
| 21 | 21 | BUILD_OPTS: --xplat | |
| 22 | 22 | - PYTHON_VERSION: 3.6 | |
| 23 | 23 | BUILD_OPTS: --xplat | |
| 24 | - - PYTHON_VERSION: 3.5 | ||
| 25 | - BUILD_OPTS: --xplat | ||
| 26 | 24 | - PYTHON_VERSION: 3.8 | |
| 27 | 25 | - PYTHON_VERSION: 3.7 | |
| 28 | 26 | - PYTHON_VERSION: 3.6 | |
| 29 | - - PYTHON_VERSION: 3.5 | ||
| 30 | 27 | ||
| 31 | 28 | init: | |
| 32 | 29 | # Update Environment Variables based on matrix/platform | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -637,7 +637,6 @@ def run(self): | |||
| 637 | 637 | "License :: OSI Approved :: MIT License", | |
| 638 | 638 | "Programming Language :: C#", | |
| 639 | 639 | "Programming Language :: Python :: 3", | |
| 640 | - "Programming Language :: Python :: 3.5", | ||
| 641 | 640 | "Programming Language :: Python :: 3.6", | |
| 642 | 641 | "Programming Language :: Python :: 3.7", | |
| 643 | 642 | "Programming Language :: Python :: 3.8", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -161,8 +161,6 @@ | |||
| 161 | 161 | <Compile Include="$(PythonInteropFile)" /> | |
| 162 | 162 | </ItemGroup> | |
| 163 | 163 | <ItemGroup Condition=" '$(PythonInteropFile)' == '' "> | |
| 164 | - <Compile Include="interop34.cs" /> | ||
| 165 | - <Compile Include="interop35.cs" /> | ||
| 166 | 164 | <Compile Include="interop36.cs" /> | |
| 167 | 165 | <Compile Include="interop37.cs" /> | |
| 168 | 166 | <Compile Include="interop38.cs" /> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -139,8 +139,6 @@ public void ToContiguous(IntPtr buf, BufferOrderStyle order) | |||
| 139 | 139 | { | |
| 140 | 140 | if (disposedValue) | |
| 141 | 141 | throw new ObjectDisposedException(nameof(PyBuffer)); | |
| 142 | - if (Runtime.PyVersion < new Version(3, 6)) | ||
| 143 | - throw new NotSupportedException("ToContiguous requires at least Python 3.6"); | ||
| 144 | 142 | ||
| 145 | 143 | if (Runtime.PyBuffer_ToContiguous(buf, ref _view, _view.len, OrderStyleToChar(order, true)) < 0) | |
| 146 | 144 | throw new PythonException(); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments