Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1f26a51

Browse files
authored
drop 3.4 and 3.5 (#1227)
1 parenteaed5c2 commit1f26a51

File tree

8 files changed

+1
-303
lines changed

8 files changed

+1
-303
lines changed

‎.travis.yml‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ python:
55
-3.8
66
-3.7
77
-3.6
8-
-3.5
98

109
env:
1110
matrix:

‎CHANGELOG.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
1010
###Added
1111

1212
###Changed
13-
- Drop support for Python 2
13+
- Drop support for Python 2, 3.4, and 3.5
1414
-`clr.AddReference` may now throw errors besides`FileNotFoundException`, that provide more
1515
details about the cause of the failure
1616
-`clr.AddReference` no longer adds ".dll" implicitly

‎appveyor.yml‎

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,9 @@ environment:
2121
BUILD_OPTS:--xplat
2222
-PYTHON_VERSION:3.6
2323
BUILD_OPTS:--xplat
24-
-PYTHON_VERSION:3.5
25-
BUILD_OPTS:--xplat
2624
-PYTHON_VERSION:3.8
2725
-PYTHON_VERSION:3.7
2826
-PYTHON_VERSION:3.6
29-
-PYTHON_VERSION:3.5
3027

3128
init:
3229
# Update Environment Variables based on matrix/platform

‎setup.py‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,6 @@ def run(self):
637637
"License :: OSI Approved :: MIT License",
638638
"Programming Language :: C#",
639639
"Programming Language :: Python :: 3",
640-
"Programming Language :: Python :: 3.5",
641640
"Programming Language :: Python :: 3.6",
642641
"Programming Language :: Python :: 3.7",
643642
"Programming Language :: Python :: 3.8",

‎src/runtime/Python.Runtime.csproj‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,6 @@
161161
<CompileInclude="$(PythonInteropFile)" />
162162
</ItemGroup>
163163
<ItemGroupCondition=" '$(PythonInteropFile)' == ''">
164-
<CompileInclude="interop34.cs" />
165-
<CompileInclude="interop35.cs" />
166164
<CompileInclude="interop36.cs" />
167165
<CompileInclude="interop37.cs" />
168166
<CompileInclude="interop38.cs" />

‎src/runtime/interop34.cs‎

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

‎src/runtime/interop35.cs‎

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

‎src/runtime/pybuffer.cs‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,6 @@ public void ToContiguous(IntPtr buf, BufferOrderStyle order)
139139
{
140140
if(disposedValue)
141141
thrownewObjectDisposedException(nameof(PyBuffer));
142-
if(Runtime.PyVersion<newVersion(3,6))
143-
thrownewNotSupportedException("ToContiguous requires at least Python 3.6");
144142

145143
if(Runtime.PyBuffer_ToContiguous(buf,ref_view,_view.len,OrderStyleToChar(order,true))<0)
146144
thrownewPythonException();

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp