Skip to content

Commit

Permalink
[RemoteRendering] Python 3.6 removal and cleanup (Azure#26277)
Browse files Browse the repository at this point in the history
MixedReality RemoteRendering had necessary files updated
to reflect that Python 3.7 is now the minimum supported version.
The mixedreality-nspkg dev dependency was also removed, and since
the nspkg is no longer used by any package, it was removed as well.

Signed-off-by: Paul Van Eck <[email protected]>

Signed-off-by: Paul Van Eck <[email protected]>
  • Loading branch information
pvaneck authored and mccoyp committed Sep 22, 2022
1 parent c2fa120 commit fe122e5
Show file tree
Hide file tree
Showing 14 changed files with 5 additions and 77 deletions.
5 changes: 0 additions & 5 deletions sdk/nspkg/azure-mixedreality-nspkg/CHANGELOG.md

This file was deleted.

3 changes: 0 additions & 3 deletions sdk/nspkg/azure-mixedreality-nspkg/MANIFEST.in

This file was deleted.

11 changes: 0 additions & 11 deletions sdk/nspkg/azure-mixedreality-nspkg/README.md

This file was deleted.

1 change: 0 additions & 1 deletion sdk/nspkg/azure-mixedreality-nspkg/azure/__init__.py

This file was deleted.

Empty file.
2 changes: 0 additions & 2 deletions sdk/nspkg/azure-mixedreality-nspkg/dev_requirements.txt

This file was deleted.

2 changes: 0 additions & 2 deletions sdk/nspkg/azure-mixedreality-nspkg/setup.cfg

This file was deleted.

41 changes: 0 additions & 41 deletions sdk/nspkg/azure-mixedreality-nspkg/setup.py

This file was deleted.

3 changes: 0 additions & 3 deletions sdk/nspkg/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ extends:
- name: azure-search-nspkg
safeName: azuresearchnspkg
skipVerifyChangeLog: true
- name: azure-mixedreality-nspkg
safeName: azuremixedrealitynspkg
skipVerifyChangeLog: true
- name: azure-security-nspkg
safeName: azuresecuritynspkg
skipVerifyChangeLog: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Other Changes

- Python 2.7 is no longer supported. Please use Python version 3.6 or later.
- Python 2.7 is no longer supported. Please use Python version 3.7 or later.

## 1.0.0b1 (2021-11-15)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ The following snippet describes how to request that a new rendering session be s

### Extend the lease time of a session

If a session is approaching its maximum lease time, but you want to keep it alive, you will need to make a call to
If a session is approaching its maximum lease time, but you want to keep it alive, you will need to make a call to
increase its maximum lease time.
This example shows how to query the current properties and then extend the lease if it will expire soon.

Expand Down Expand Up @@ -336,7 +336,7 @@ The Remote Rendering client library will raise exceptions defined in [Azure Core

### Async APIs

This library also includes a complete async API supported on Python 3.5+. To use it, you must
This library also includes a complete async API supported on Python 3.7+. To use it, you must
first install an async transport, such as [aiohttp](https://pypi.org/project/aiohttp/). Async clients
are found under the `azure.mixedreality.remoterendering.aio` namespace.

Expand Down Expand Up @@ -377,4 +377,4 @@ to build and test the code.
[azure_identity]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/identity/azure-identity

[pip]: https://pypi.org/project/pip/
[sdk_logging_docs]: https://docs.microsoft.com/azure/developer/python/azure-sdk-logging
[sdk_logging_docs]: https://docs.microsoft.com/azure/developer/python/azure-sdk-logging
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
-e ../../../tools/azure-sdk-tools
../../core/azure-core
../../nspkg/azure-mixedreality-nspkg
../../mixedreality/azure-mixedreality-authentication
aiohttp>=3.0
-e ../../identity/azure-identity
-e ../../../tools/azure-devtools

Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'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 All @@ -61,7 +60,7 @@
package_data={
'pytyped': ['py.typed'],
},
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=[
'azure-core<2.0.0,>=1.6.0',
'azure-mixedreality-authentication>=1.0.0b1',
Expand Down
1 change: 0 additions & 1 deletion shared_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ azure-mgmt-subscription~=0.2.0
azure-mgmt-trafficmanager~=0.50.0
azure-mgmt-web~=0.35.0
azure-messaging-nspkg
azure-mixedreality-nspkg
azure-mixedreality-authentication
azure-nspkg
azure-keyvault-nspkg
Expand Down

0 comments on commit fe122e5

Please sign in to comment.