Skip to content

Commit 9cd3267

Browse files
authored
Move azure-core to 3.8+ (#35622)
1 parent a517bad commit 9cd3267

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

sdk/core/azure-core/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
### Other Changes
1212

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

1516
## 1.30.1 (2024-02-29)
1617

sdk/core/azure-core/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@
4949
"Programming Language :: Python",
5050
"Programming Language :: Python :: 3 :: Only",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.7",
5352
"Programming Language :: Python :: 3.8",
5453
"Programming Language :: Python :: 3.9",
5554
"Programming Language :: Python :: 3.10",
5655
"Programming Language :: Python :: 3.11",
56+
"Programming Language :: Python :: 3.12",
5757
"License :: OSI Approved :: MIT License",
5858
],
5959
zip_safe=False,
@@ -67,7 +67,7 @@
6767
package_data={
6868
"pytyped": ["py.typed"],
6969
},
70-
python_requires=">=3.7",
70+
python_requires=">=3.8",
7171
install_requires=[
7272
"requests>=2.21.0",
7373
"six>=1.11.0",

sdk/core/azure-core/tests/perf_tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Core Python client performance tests
22

3-
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.
3+
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.
44

55
### Setup for test resources
66
The following environment variables will need to be set for the tests to access the live resources:

sdk/core/azure-core/tests/testserver_tests/coretestserver/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
"Development Status :: 4 - Beta",
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.7",
2726
"Programming Language :: Python :: 3.8",
2827
"Programming Language :: Python :: 3.9",
2928
"Programming Language :: Python :: 3.10",
3029
"Programming Language :: Python :: 3.11",
30+
"Programming Language :: Python :: 3.12",
3131
"License :: OSI Approved :: MIT License",
3232
],
3333
packages=find_packages(),

0 commit comments

Comments
 (0)