Skip to content

Commit

Permalink
Move azure-core to 3.8+ (#35622)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel authored May 14, 2024
1 parent a517bad commit 9cd3267
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions sdk/core/azure-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
### Other Changes

- HTTP tracing spans will now include an `error.type` attribute if an error status code is returned. #34619
- Minimum required Python version is now 3.8

## 1.30.1 (2024-02-29)

Expand Down
4 changes: 2 additions & 2 deletions sdk/core/azure-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
Expand All @@ -67,7 +67,7 @@
package_data={
"pytyped": ["py.typed"],
},
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"requests>=2.21.0",
"six>=1.11.0",
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure-core/tests/perf_tests/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Core Python client performance tests

In order to run the performance tests, the `devtools_testutils` package must be installed. This is done as part of the `dev_requirements.txt` installation. Start be creating a new virtual environment for your perf tests. This will need to be a Python 3 environment, preferably >=3.7.
In order to run the performance tests, the `devtools_testutils` package must be installed. This is done as part of the `dev_requirements.txt` installation. Start be creating a new virtual environment for your perf tests. This will need to be a Python 3 environment, preferably >=3.8.

### Setup for test resources
The following environment variables will need to be set for the tests to access the live resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
packages=find_packages(),
Expand Down

0 comments on commit 9cd3267

Please sign in to comment.