Skip to content
Draft
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 .github/actions/env-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
python -m venv env
chmod +x env/bin/activate
source ./env/bin/activate
pip install azdev
pip install azdev pkginfo
azdev --version
cd ../
azdev setup -c azure-cli --debug
Expand Down
3 changes: 3 additions & 0 deletions src/azure-cli-core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools == 70.0.0", "wheel == 0.30.0"]
build-backend = "setuptools.build_meta"
3 changes: 3 additions & 0 deletions src/azure-cli-telemetry/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools == 70.0.0", "wheel == 0.30.0"]
build-backend = "setuptools.build_meta"
3 changes: 3 additions & 0 deletions src/azure-cli-testsdk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools == 70.0.0", "wheel == 0.30.0"]
build-backend = "setuptools.build_meta"
3 changes: 3 additions & 0 deletions src/azure-cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools == 70.0.0", "wheel == 0.30.0"]
build-backend = "setuptools.build_meta"
2 changes: 0 additions & 2 deletions src/azure-cli/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
[build_py]
extra_build_source_files=azure.cli,__main__,azure/cli/__main__.py
1 change: 1 addition & 0 deletions src/azure-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@
install_requires=DEPENDENCIES,
python_requires='>=3.9.0',
package_data={
'azure.cli': ['__main__.py'],
'azure.cli.command_modules.acr': ['*.json'],
'azure.cli.command_modules.botservice': ['*.json', '*.config'],
'azure.cli.command_modules.monitor.operations': ['autoscale-parameters-template.json'],
Expand Down
3 changes: 3 additions & 0 deletions tools/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools == 70.0.0", "wheel == 0.30.0"]
build-backend = "setuptools.build_meta"
Loading