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
2 changes: 1 addition & 1 deletion 2 .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [windows, ubuntu, macos]
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python: ["3.7", "3.8", "3.9", "3.10"]
platform: [x64, x86]
exclude:
- os: ubuntu
Expand Down
2 changes: 1 addition & 1 deletion 2 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ and other `PyObject` derived types when called from Python.


### Changed
- Drop support for Python 2, 3.4, and 3.5
- Drop support for Python 2, 3.4, 3.5, and 3.6
- `wchar_t` size aka `Runtime.UCS` is now determined at runtime
- `clr.AddReference` may now throw errors besides `FileNotFoundException`, that provide more
details about the cause of the failure
Expand Down
1 change: 0 additions & 1 deletion 1 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ def finalize_options(self):
"License :: OSI Approved :: MIT License",
"Programming Language :: C#",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 1 addition & 1 deletion 2 src/runtime/Mixins/collections.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Implements collections.abc for common .NET types
https://docs.python.org/3.6/library/collections.abc.html
https://docs.python.org/3/library/collections.abc.html
"""

import collections.abc as col
Expand Down
136 changes: 0 additions & 136 deletions 136 src/runtime/Native/TypeOffset36.cs

This file was deleted.

2 changes: 1 addition & 1 deletion 2 src/runtime/Util/Util.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal static class Util
internal const string UnstableApiMessage =
"This API is unstable, and might be changed or removed in the next minor release";
internal const string MinimalPythonVersionRequired =
"Only Python 3.6 or newer is supported";
"Only Python 3.7 or newer is supported";
internal const string InternalUseOnly =
"This API is for internal use only";

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.