-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #791 from adrianeboyd/chore/v7-python-3.11
Updates for python 3.11, set version to v7.4.6
- Loading branch information
Showing
13 changed files
with
597 additions
and
342 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# build version constraints for use with wheelwright + multibuild | ||
numpy==1.15.0; python_version<='3.7' | ||
numpy==1.17.3; python_version=='3.8' | ||
numpy==1.15.0; python_version<='3.7' and platform_machine!='aarch64' | ||
numpy==1.19.2; python_version<='3.7' and platform_machine=='aarch64' | ||
numpy==1.17.3; python_version=='3.8' and platform_machine!='aarch64' | ||
numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64' | ||
numpy==1.19.3; python_version=='3.9' | ||
numpy; python_version>='3.10' | ||
numpy==1.21.3; python_version=='3.10' | ||
numpy==1.23.2; python_version=='3.11' | ||
numpy; python_version>='3.12' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Copyright (c) 2013-2022, Graham Dumpleton | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,27 @@ | ||
__version_info__ = ("1", "11", "1") | ||
__version__ = ".".join(__version_info__) | ||
__version_info__ = ('1', '14', '1') | ||
__version__ = '.'.join(__version_info__) | ||
|
||
from .wrappers import ( | ||
ObjectProxy, | ||
CallableObjectProxy, | ||
FunctionWrapper, | ||
BoundFunctionWrapper, | ||
WeakFunctionProxy, | ||
PartialCallableObjectProxy, | ||
resolve_path, | ||
apply_patch, | ||
wrap_object, | ||
wrap_object_attribute, | ||
function_wrapper, | ||
wrap_function_wrapper, | ||
patch_function_wrapper, | ||
transient_function_wrapper, | ||
) | ||
from .wrappers import (ObjectProxy, CallableObjectProxy, FunctionWrapper, | ||
BoundFunctionWrapper, WeakFunctionProxy, PartialCallableObjectProxy, | ||
resolve_path, apply_patch, wrap_object, wrap_object_attribute, | ||
function_wrapper, wrap_function_wrapper, patch_function_wrapper, | ||
transient_function_wrapper) | ||
|
||
from .decorators import adapter_factory, AdapterFactory, decorator, synchronized | ||
from .decorators import (adapter_factory, AdapterFactory, decorator, | ||
synchronized) | ||
|
||
from .importer import ( | ||
register_post_import_hook, | ||
when_imported, | ||
notify_module_loaded, | ||
discover_post_import_hooks, | ||
) | ||
from .importer import (register_post_import_hook, when_imported, | ||
notify_module_loaded, discover_post_import_hooks) | ||
|
||
# Import of inspect.getcallargs() included for backward compatibility. An | ||
# implementation of this was previously bundled and made available here for | ||
# Python <2.7. Avoid using this in future. | ||
|
||
from inspect import getcallargs | ||
|
||
# Variant of inspect.formatargspec() included here for forward compatibility. | ||
# This is being done because Python 3.11 dropped inspect.formatargspec() but | ||
# code for handling signature changing decorators relied on it. Exposing the | ||
# bundled implementation here in case any user of wrapt was also needing it. | ||
|
||
from .arguments import formatargspec |
Oops, something went wrong.