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

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion 1 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ python:
- 3.8
- 3.7
- 3.6
- 3.5

env:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion 2 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
### Added

### Changed
- Drop support for Python 2
- Drop support for Python 2, 3.4, and 3.5
- `clr.AddReference` may now throw errors besides `FileNotFoundException`, that provide more
details about the cause of the failure
- `clr.AddReference` no longer adds ".dll" implicitly
Expand Down
3 changes: 0 additions & 3 deletions 3 appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,9 @@ environment:
BUILD_OPTS: --xplat
- PYTHON_VERSION: 3.6
BUILD_OPTS: --xplat
- PYTHON_VERSION: 3.5
BUILD_OPTS: --xplat
- PYTHON_VERSION: 3.8
- PYTHON_VERSION: 3.7
- PYTHON_VERSION: 3.6
- PYTHON_VERSION: 3.5

init:
# Update Environment Variables based on matrix/platform
Expand Down
1 change: 0 additions & 1 deletion 1 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,6 @@ def run(self):
"License :: OSI Approved :: MIT License",
"Programming Language :: C#",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down
2 changes: 0 additions & 2 deletions 2 src/runtime/Python.Runtime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,6 @@
<Compile Include="$(PythonInteropFile)" />
</ItemGroup>
<ItemGroup Condition=" '$(PythonInteropFile)' == '' ">
<Compile Include="interop34.cs" />
<Compile Include="interop35.cs" />
<Compile Include="interop36.cs" />
<Compile Include="interop37.cs" />
<Compile Include="interop38.cs" />
Expand Down
144 changes: 0 additions & 144 deletions 144 src/runtime/interop34.cs

This file was deleted.

149 changes: 0 additions & 149 deletions 149 src/runtime/interop35.cs

This file was deleted.

2 changes: 0 additions & 2 deletions 2 src/runtime/pybuffer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,6 @@ public void ToContiguous(IntPtr buf, BufferOrderStyle order)
{
if (disposedValue)
throw new ObjectDisposedException(nameof(PyBuffer));
if (Runtime.PyVersion < new Version(3, 6))
throw new NotSupportedException("ToContiguous requires at least Python 3.6");

if (Runtime.PyBuffer_ToContiguous(buf, ref _view, _view.len, OrderStyleToChar(order, true)) < 0)
throw new PythonException();
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.