Skip to content

Removing references to the hardcoded version of setuptools. #1464

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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: 0 additions & 2 deletions .github/actions/setup-ci-machine/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ runs:
steps:
- run: python -m pip install --upgrade pip
shell: bash
- run: pip install wheel==0.30.0 setuptools==70.0.0
shell: bash
- run: pip install pytest==6.2.5
shell: bash
- run: pip install coverage
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/merge-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
with:
python-version: '3.12'
architecture: x64
- name: Install setuptools
run: pip install setuptools==70.0.0
- uses: ./.github/actions/setup-ci-machine
- uses: ./.github/actions/build-publish-azure-devops-cli-extension

Expand All @@ -29,8 +27,6 @@ jobs:
with:
python-version: '3.12'
architecture: x64
- name: Install setuptools
run: pip install setuptools==70.0.0
- uses: ./.github/actions/setup-ci-machine
- uses: ./.github/actions/build-publish-azure-cli-test-sdk

Expand Down Expand Up @@ -143,8 +139,6 @@ jobs:
with:
python-version: '3.12'
architecture: x64
- name: Install setuptools
run: pip install setuptools==70.0.0
- uses: ./.github/actions/install-azure-cli-edge
- uses: ./.github/actions/download-install-local-azure-test-sdk
- uses: ./.github/actions/setup-ci-machine
Expand All @@ -165,8 +159,6 @@ jobs:
with:
python-version: '3.12'
architecture: x64
- name: Install setuptools
run: pip install setuptools==70.0.0
- uses: ./.github/actions/install-azure-cli-edge
- uses: ./.github/actions/download-install-local-azure-test-sdk
- uses: ./.github/actions/setup-ci-machine
Expand Down Expand Up @@ -201,8 +193,6 @@ jobs:
architecture: x64
- uses: ./.github/actions/setup-ci-machine
- uses: ./.github/actions/install-azure-cli-edge
- name: Install setuptools
run: pip install setuptools==70.0.0
- name: Build wheel for Azure DevOps CLI extension
run: python setup.py sdist bdist_wheel
working-directory: 'azure-devops/'
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
with:
python-version: '3.12'
architecture: x64
- name: Install setuptools
run: pip install setuptools==70.0.0
- uses: ./.github/actions/setup-ci-machine
- uses: ./.github/actions/build-publish-azure-devops-cli-extension

Expand All @@ -30,8 +28,6 @@ jobs:
with:
python-version: '3.12'
architecture: x64
- name: Install setuptools
run: pip install setuptools==70.0.0
- uses: ./.github/actions/setup-ci-machine
- uses: ./.github/actions/build-publish-azure-cli-test-sdk

Expand Down Expand Up @@ -152,8 +148,6 @@ jobs:
with:
python-version: '3.12'
architecture: x64
- name: Install setuptools
run: pip install setuptools==70.0.0
- uses: ./.github/actions/install-azure-cli-edge
- uses: ./.github/actions/download-install-local-azure-test-sdk
- uses: ./.github/actions/setup-ci-machine
Expand All @@ -174,8 +168,6 @@ jobs:
with:
python-version: '3.12'
architecture: x64
- name: Install setuptools
run: pip install setuptools==70.0.0
- uses: ./.github/actions/install-azure-cli-edge
- uses: ./.github/actions/download-install-local-azure-test-sdk
- uses: ./.github/actions/setup-ci-machine
Expand Down Expand Up @@ -213,8 +205,6 @@ jobs:
architecture: x64
- uses: ./.github/actions/setup-ci-machine
- uses: ./.github/actions/install-azure-cli-edge
- name: Install setuptools
run: pip install setuptools==70.0.0
- name: Build wheel for Azure DevOps CLI extension
run: python setup.py sdist bdist_wheel
working-directory: 'azure-devops/'
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/released-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
run: |
python -m venv env
source env/bin/activate
pip install wheel==0.30.0 setuptools==70.0.0
pip install azdev
azdev --version
azdev setup -r ./ -e azure-devops
Expand Down
Loading