mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge branch 'master' into add-keyvalue-create_if_missing
This commit is contained in:
commit
398ebb961e
384 changed files with 5468 additions and 77970 deletions
30
.github/workflows/build-macos-packages.yml
vendored
30
.github/workflows/build-macos-packages.yml
vendored
|
@ -27,6 +27,10 @@ jobs:
|
|||
matrix:
|
||||
arch:
|
||||
- x86_64
|
||||
source:
|
||||
- onedir
|
||||
- src
|
||||
|
||||
runs-on:
|
||||
- macos-12
|
||||
steps:
|
||||
|
@ -100,15 +104,31 @@ jobs:
|
|||
APPLE_ACCT: "${{ secrets.MAC_SIGN_APPLE_ACCT }}"
|
||||
APP_SPEC_PWD: "${{ secrets.MAC_SIGN_APP_SPEC_PWD }}"
|
||||
run: |
|
||||
tools pkg build macos --onedir salt-${{ inputs.salt-version }}-onedir-darwin-${{ matrix.arch }}.tar.xz \
|
||||
--salt-version ${{ inputs.salt-version }} ${{
|
||||
steps.check-pkg-sign.outputs.sign-pkgs == 'true' && '--sign' || ''
|
||||
}}
|
||||
tools pkg build macos ${{
|
||||
matrix.source == 'onedir' &&
|
||||
format(
|
||||
'--onedir salt-{0}-onedir-darwin-{1}.tar.xz --salt-version {0} {2}',
|
||||
inputs.salt-version,
|
||||
matrix.arch,
|
||||
steps.check-pkg-sign.outputs.sign-pkgs == 'true' && '--sign' || ''
|
||||
)
|
||||
||
|
||||
format('--salt-version {0}', inputs.salt-version)
|
||||
}}
|
||||
|
||||
- name: Set Artifact Name
|
||||
id: set-artifact-name
|
||||
run: |
|
||||
if [ "${{ matrix.source }}" != "src" ]; then
|
||||
echo "artifact-name=salt-${{ inputs.salt-version }}-${{ matrix.arch }}-macos" >> "$GITHUB_OUTPUT"
|
||||
else
|
||||
echo "artifact-name=salt-${{ inputs.salt-version }}-${{ matrix.arch }}-macos-from-src" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
|
||||
- name: Upload ${{ matrix.arch }} Package
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: salt-${{ inputs.salt-version }}-${{ matrix.arch }}-macos
|
||||
name: ${{ steps.set-artifact-name.outputs.artifact-name }}
|
||||
path: pkg/macos/salt-${{ inputs.salt-version }}-py3-*.pkg
|
||||
retention-days: 7
|
||||
if-no-files-found: error
|
||||
|
|
35
.github/workflows/build-windows-packages.yml
vendored
35
.github/workflows/build-windows-packages.yml
vendored
|
@ -29,6 +29,10 @@ jobs:
|
|||
arch:
|
||||
- x86
|
||||
- amd64
|
||||
source:
|
||||
- onedir
|
||||
- src
|
||||
|
||||
runs-on:
|
||||
- windows-latest
|
||||
env:
|
||||
|
@ -95,15 +99,34 @@ jobs:
|
|||
|
||||
- name: Build Windows Packages
|
||||
run: |
|
||||
tools pkg build windows --onedir salt-${{ inputs.salt-version }}-onedir-windows-${{ matrix.arch }}.zip `
|
||||
--salt-version ${{ inputs.salt-version }} --arch ${{ matrix.arch }} ${{
|
||||
tools pkg build windows ${{
|
||||
matrix.source == 'onedir' &&
|
||||
format(
|
||||
'--onedir salt-{0}-onedir-windows-{1}.zip --salt-version {0} --arch {1} {2}',
|
||||
inputs.salt-version,
|
||||
matrix.arch,
|
||||
steps.check-pkg-sign.outputs.sign-pkgs == 'true' && '--sign' || ''
|
||||
}}
|
||||
)
|
||||
||
|
||||
format('--salt-version {0} --arch {1}', inputs.salt-version, matrix.arch)
|
||||
}}
|
||||
|
||||
- name: Upload ${{ matrix.arch }} Packages
|
||||
- name: Set Artifact Name
|
||||
id: set-artifact-name
|
||||
shell: bash
|
||||
run: |
|
||||
if [ "${{ matrix.source }}" != "src" ]; then
|
||||
echo "artifact-name-nsis=salt-${{ inputs.salt-version }}-${{ matrix.arch }}-NSIS" >> "$GITHUB_OUTPUT"
|
||||
echo "artifact-name-msi=salt-${{ inputs.salt-version }}-${{ matrix.arch }}-MSI" >> "$GITHUB_OUTPUT"
|
||||
else
|
||||
echo "artifact-name-nsis=salt-${{ inputs.salt-version }}-${{ matrix.arch }}-NSIS-from-src" >> "$GITHUB_OUTPUT"
|
||||
echo "artifact-name-msi=salt-${{ inputs.salt-version }}-${{ matrix.arch }}-MSI-from-src" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
|
||||
- name: Upload ${{ matrix.arch }} NSIS Packages
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: salt-${{ inputs.salt-version }}-${{ matrix.arch }}-NSIS
|
||||
name: ${{ steps.set-artifact-name.outputs.artifact-name-nsis }}
|
||||
path: pkg/windows/build/Salt-*.exe
|
||||
retention-days: 7
|
||||
if-no-files-found: error
|
||||
|
@ -111,7 +134,7 @@ jobs:
|
|||
- name: Upload ${{ matrix.arch }} MSI Package
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: salt-${{ inputs.salt-version }}-${{ matrix.arch }}-MSI
|
||||
name: ${{ steps.set-artifact-name.outputs.artifact-name-msi }}
|
||||
path: pkg/windows/build/Salt-*.msi
|
||||
retention-days: 7
|
||||
if-no-files-found: error
|
||||
|
|
30
.github/workflows/ci.yml
vendored
30
.github/workflows/ci.yml
vendored
|
@ -39,6 +39,7 @@ jobs:
|
|||
cache-seed: ${{ steps.set-cache-seed.outputs.cache-seed }}
|
||||
latest-release: ${{ steps.get-salt-releases.outputs.latest-release }}
|
||||
releases: ${{ steps.get-salt-releases.outputs.releases }}
|
||||
release-changelog-target: ${{ steps.get-release-changelog-target.outputs.release-changelog-target }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -243,6 +244,11 @@ jobs:
|
|||
id: set-cache-seed
|
||||
run: |
|
||||
echo "cache-seed=${{ env.CACHE_SEED }}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Get Release Changelog Target
|
||||
id: get-release-changelog-target
|
||||
run: |
|
||||
tools ci get-release-changelog-target ${{ github.event_name }}
|
||||
pre-commit:
|
||||
name: Pre-Commit
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.runners)['github-hosted'] }}
|
||||
|
@ -320,7 +326,7 @@ jobs:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --next-release --template-only
|
||||
else
|
||||
tools changelog update-release-notes --template-only
|
||||
|
@ -330,7 +336,7 @@ jobs:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --draft --next-release
|
||||
tools changelog update-release-notes --next-release
|
||||
else
|
||||
|
@ -1132,25 +1138,6 @@ jobs:
|
|||
skip-code-coverage: ${{ github.event_name == 'pull_request' }}
|
||||
skip-junit-reports: ${{ github.event_name == 'pull_request' }}
|
||||
|
||||
fedora-36:
|
||||
name: Fedora 36
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
needs:
|
||||
- prepare-workflow
|
||||
- build-salt-onedir
|
||||
uses: ./.github/workflows/test-action.yml
|
||||
with:
|
||||
distro-slug: fedora-36
|
||||
nox-session: ci-test-onedir
|
||||
platform: linux
|
||||
arch: x86_64
|
||||
testrun: ${{ needs.prepare-workflow.outputs.testrun }}
|
||||
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
|
||||
cache-prefix: ${{ needs.prepare-workflow.outputs.cache-seed }}|3.10.11
|
||||
pull-labels: ${{ needs.prepare-workflow.outputs.pull-labels }}
|
||||
skip-code-coverage: ${{ github.event_name == 'pull_request' }}
|
||||
skip-junit-reports: ${{ github.event_name == 'pull_request' }}
|
||||
|
||||
fedora-37:
|
||||
name: Fedora 37
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
|
@ -1349,7 +1336,6 @@ jobs:
|
|||
- debian-10
|
||||
- debian-11
|
||||
- debian-11-arm64
|
||||
- fedora-36
|
||||
- fedora-37
|
||||
- fedora-38
|
||||
- opensuse-15
|
||||
|
|
52
.github/workflows/nightly.yml
vendored
52
.github/workflows/nightly.yml
vendored
|
@ -92,6 +92,7 @@ jobs:
|
|||
cache-seed: ${{ steps.set-cache-seed.outputs.cache-seed }}
|
||||
latest-release: ${{ steps.get-salt-releases.outputs.latest-release }}
|
||||
releases: ${{ steps.get-salt-releases.outputs.releases }}
|
||||
release-changelog-target: ${{ steps.get-release-changelog-target.outputs.release-changelog-target }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -296,6 +297,11 @@ jobs:
|
|||
id: set-cache-seed
|
||||
run: |
|
||||
echo "cache-seed=${{ env.CACHE_SEED }}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Get Release Changelog Target
|
||||
id: get-release-changelog-target
|
||||
run: |
|
||||
tools ci get-release-changelog-target ${{ github.event_name }}
|
||||
pre-commit:
|
||||
name: Pre-Commit
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.runners)['github-hosted'] }}
|
||||
|
@ -373,7 +379,7 @@ jobs:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --next-release --template-only
|
||||
else
|
||||
tools changelog update-release-notes --template-only
|
||||
|
@ -383,7 +389,7 @@ jobs:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --draft --next-release
|
||||
tools changelog update-release-notes --next-release
|
||||
else
|
||||
|
@ -1191,25 +1197,6 @@ jobs:
|
|||
skip-code-coverage: false
|
||||
skip-junit-reports: false
|
||||
|
||||
fedora-36:
|
||||
name: Fedora 36
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
needs:
|
||||
- prepare-workflow
|
||||
- build-salt-onedir
|
||||
uses: ./.github/workflows/test-action.yml
|
||||
with:
|
||||
distro-slug: fedora-36
|
||||
nox-session: ci-test-onedir
|
||||
platform: linux
|
||||
arch: x86_64
|
||||
testrun: ${{ needs.prepare-workflow.outputs.testrun }}
|
||||
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
|
||||
cache-prefix: ${{ needs.prepare-workflow.outputs.cache-seed }}|3.10.11
|
||||
pull-labels: ${{ needs.prepare-workflow.outputs.pull-labels }}
|
||||
skip-code-coverage: false
|
||||
skip-junit-reports: false
|
||||
|
||||
fedora-37:
|
||||
name: Fedora 37
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
|
@ -2040,7 +2027,6 @@ jobs:
|
|||
- debian-10
|
||||
- debian-11
|
||||
- debian-11-arm64
|
||||
- fedora-36
|
||||
- fedora-37
|
||||
- fedora-38
|
||||
- opensuse-15
|
||||
|
@ -2091,6 +2077,7 @@ jobs:
|
|||
name: Set the ${{ github.workflow }} Pipeline Exit Status
|
||||
if: always()
|
||||
runs-on: ubuntu-latest
|
||||
environment: nightly
|
||||
needs:
|
||||
- workflow-requirements
|
||||
- trigger-branch-nightly-builds
|
||||
|
@ -2126,6 +2113,27 @@ jobs:
|
|||
id: get-workflow-info
|
||||
uses: technote-space/workflow-conclusion-action@v3
|
||||
|
||||
- name: Notify Slack
|
||||
id: slack
|
||||
uses: slackapi/slack-github-action@v1.24.0
|
||||
with:
|
||||
payload: |
|
||||
{
|
||||
"text": "Nightly Workflow build result: ${{ job.status }}\n${{ github.event.head_commit.url }}",
|
||||
"blocks": [
|
||||
{
|
||||
"type": "section",
|
||||
"text": {
|
||||
"type": "mrkdwn",
|
||||
"text": "GitHub Action build result: ${{ job.status }}\n${{ github.event.head_commit.url }}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
env:
|
||||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
||||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
|
||||
|
||||
- name: Set Pipeline Exit Status
|
||||
shell: bash
|
||||
run: |
|
||||
|
|
2
.github/workflows/pre-commit-action.yml
vendored
2
.github/workflows/pre-commit-action.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
|||
- name: Check ALL Files On Branch
|
||||
if: github.event_name != 'pull_request'
|
||||
env:
|
||||
SKIP: lint-salt,lint-tests,remove-import-headers,rstcheck
|
||||
SKIP: lint-salt,lint-tests,remove-import-headers,pyupgrade
|
||||
run: |
|
||||
pre-commit run --show-diff-on-failure --color=always --all-files
|
||||
|
||||
|
|
40
.github/workflows/release.yml
vendored
40
.github/workflows/release.yml
vendored
|
@ -505,44 +505,6 @@ jobs:
|
|||
latest-release: "${{ needs.prepare-workflow.outputs.latest-release }}"
|
||||
secrets: inherit
|
||||
|
||||
fedora-36-pkg-download-tests:
|
||||
name: Test Fedora 36 Package Downloads
|
||||
if: ${{ inputs.skip-salt-pkg-download-test-suite == false }}
|
||||
needs:
|
||||
- prepare-workflow
|
||||
- publish-repositories
|
||||
- download-onedir-artifact
|
||||
uses: ./.github/workflows/test-package-downloads-action-linux.yml
|
||||
with:
|
||||
distro-slug: fedora-36
|
||||
platform: linux
|
||||
arch: x86_64
|
||||
cache-prefix: ${{ needs.prepare-workflow.outputs.cache-seed }}|3.10.11
|
||||
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
|
||||
environment: release
|
||||
skip-code-coverage: true
|
||||
latest-release: "${{ needs.prepare-workflow.outputs.latest-release }}"
|
||||
secrets: inherit
|
||||
|
||||
fedora-36-arm64-pkg-download-tests:
|
||||
name: Test Fedora 36 Arm64 Package Downloads
|
||||
if: ${{ inputs.skip-salt-pkg-download-test-suite == false }}
|
||||
needs:
|
||||
- prepare-workflow
|
||||
- publish-repositories
|
||||
- download-onedir-artifact
|
||||
uses: ./.github/workflows/test-package-downloads-action-linux.yml
|
||||
with:
|
||||
distro-slug: fedora-36-arm64
|
||||
platform: linux
|
||||
arch: aarch64
|
||||
cache-prefix: ${{ needs.prepare-workflow.outputs.cache-seed }}|3.10.11
|
||||
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
|
||||
environment: release
|
||||
skip-code-coverage: true
|
||||
latest-release: "${{ needs.prepare-workflow.outputs.latest-release }}"
|
||||
secrets: inherit
|
||||
|
||||
fedora-37-pkg-download-tests:
|
||||
name: Test Fedora 37 Package Downloads
|
||||
if: ${{ inputs.skip-salt-pkg-download-test-suite == false }}
|
||||
|
@ -818,8 +780,6 @@ jobs:
|
|||
- debian-10-pkg-download-tests
|
||||
- debian-11-pkg-download-tests
|
||||
- debian-11-arm64-pkg-download-tests
|
||||
- fedora-36-pkg-download-tests
|
||||
- fedora-36-arm64-pkg-download-tests
|
||||
- fedora-37-pkg-download-tests
|
||||
- fedora-37-arm64-pkg-download-tests
|
||||
- fedora-38-pkg-download-tests
|
||||
|
|
30
.github/workflows/scheduled.yml
vendored
30
.github/workflows/scheduled.yml
vendored
|
@ -82,6 +82,7 @@ jobs:
|
|||
cache-seed: ${{ steps.set-cache-seed.outputs.cache-seed }}
|
||||
latest-release: ${{ steps.get-salt-releases.outputs.latest-release }}
|
||||
releases: ${{ steps.get-salt-releases.outputs.releases }}
|
||||
release-changelog-target: ${{ steps.get-release-changelog-target.outputs.release-changelog-target }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -286,6 +287,11 @@ jobs:
|
|||
id: set-cache-seed
|
||||
run: |
|
||||
echo "cache-seed=${{ env.CACHE_SEED }}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Get Release Changelog Target
|
||||
id: get-release-changelog-target
|
||||
run: |
|
||||
tools ci get-release-changelog-target ${{ github.event_name }}
|
||||
pre-commit:
|
||||
name: Pre-Commit
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.runners)['github-hosted'] }}
|
||||
|
@ -363,7 +369,7 @@ jobs:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --next-release --template-only
|
||||
else
|
||||
tools changelog update-release-notes --template-only
|
||||
|
@ -373,7 +379,7 @@ jobs:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --draft --next-release
|
||||
tools changelog update-release-notes --next-release
|
||||
else
|
||||
|
@ -1175,25 +1181,6 @@ jobs:
|
|||
skip-code-coverage: false
|
||||
skip-junit-reports: false
|
||||
|
||||
fedora-36:
|
||||
name: Fedora 36
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
needs:
|
||||
- prepare-workflow
|
||||
- build-salt-onedir
|
||||
uses: ./.github/workflows/test-action.yml
|
||||
with:
|
||||
distro-slug: fedora-36
|
||||
nox-session: ci-test-onedir
|
||||
platform: linux
|
||||
arch: x86_64
|
||||
testrun: ${{ needs.prepare-workflow.outputs.testrun }}
|
||||
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
|
||||
cache-prefix: ${{ needs.prepare-workflow.outputs.cache-seed }}|3.10.11
|
||||
pull-labels: ${{ needs.prepare-workflow.outputs.pull-labels }}
|
||||
skip-code-coverage: false
|
||||
skip-junit-reports: false
|
||||
|
||||
fedora-37:
|
||||
name: Fedora 37
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
|
@ -1394,7 +1381,6 @@ jobs:
|
|||
- debian-10
|
||||
- debian-11
|
||||
- debian-11-arm64
|
||||
- fedora-36
|
||||
- fedora-37
|
||||
- fedora-38
|
||||
- opensuse-15
|
||||
|
|
68
.github/workflows/staging.yml
vendored
68
.github/workflows/staging.yml
vendored
|
@ -72,6 +72,7 @@ jobs:
|
|||
cache-seed: ${{ steps.set-cache-seed.outputs.cache-seed }}
|
||||
latest-release: ${{ steps.get-salt-releases.outputs.latest-release }}
|
||||
releases: ${{ steps.get-salt-releases.outputs.releases }}
|
||||
release-changelog-target: ${{ steps.get-release-changelog-target.outputs.release-changelog-target }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -282,6 +283,11 @@ jobs:
|
|||
id: set-cache-seed
|
||||
run: |
|
||||
echo "cache-seed=${{ env.CACHE_SEED }}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Get Release Changelog Target
|
||||
id: get-release-changelog-target
|
||||
run: |
|
||||
tools ci get-release-changelog-target ${{ github.event_name }}
|
||||
pre-commit:
|
||||
name: Pre-Commit
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.runners)['github-hosted'] }}
|
||||
|
@ -363,7 +369,7 @@ jobs:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --next-release --template-only
|
||||
else
|
||||
tools changelog update-release-notes --template-only
|
||||
|
@ -373,7 +379,7 @@ jobs:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --draft --release --next-release
|
||||
tools changelog update-release-notes --release --next-release
|
||||
else
|
||||
|
@ -1181,25 +1187,6 @@ jobs:
|
|||
skip-code-coverage: true
|
||||
skip-junit-reports: true
|
||||
|
||||
fedora-36:
|
||||
name: Fedora 36
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
needs:
|
||||
- prepare-workflow
|
||||
- build-salt-onedir
|
||||
uses: ./.github/workflows/test-action.yml
|
||||
with:
|
||||
distro-slug: fedora-36
|
||||
nox-session: ci-test-onedir
|
||||
platform: linux
|
||||
arch: x86_64
|
||||
testrun: ${{ needs.prepare-workflow.outputs.testrun }}
|
||||
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
|
||||
cache-prefix: ${{ needs.prepare-workflow.outputs.cache-seed }}|3.10.11
|
||||
pull-labels: ${{ needs.prepare-workflow.outputs.pull-labels }}
|
||||
skip-code-coverage: true
|
||||
skip-junit-reports: true
|
||||
|
||||
fedora-37:
|
||||
name: Fedora 37
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
|
@ -2388,42 +2375,6 @@ jobs:
|
|||
latest-release: "${{ needs.prepare-workflow.outputs.latest-release }}"
|
||||
secrets: inherit
|
||||
|
||||
fedora-36-pkg-download-tests:
|
||||
name: Test Fedora 36 Package Downloads
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test-pkg-download'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
needs:
|
||||
- prepare-workflow
|
||||
- publish-repositories
|
||||
uses: ./.github/workflows/test-package-downloads-action-linux.yml
|
||||
with:
|
||||
distro-slug: fedora-36
|
||||
platform: linux
|
||||
arch: x86_64
|
||||
cache-prefix: ${{ needs.prepare-workflow.outputs.cache-seed }}|3.10.11
|
||||
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
|
||||
environment: staging
|
||||
skip-code-coverage: true
|
||||
latest-release: "${{ needs.prepare-workflow.outputs.latest-release }}"
|
||||
secrets: inherit
|
||||
|
||||
fedora-36-arm64-pkg-download-tests:
|
||||
name: Test Fedora 36 Arm64 Package Downloads
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test-pkg-download'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
needs:
|
||||
- prepare-workflow
|
||||
- publish-repositories
|
||||
uses: ./.github/workflows/test-package-downloads-action-linux.yml
|
||||
with:
|
||||
distro-slug: fedora-36-arm64
|
||||
platform: linux
|
||||
arch: aarch64
|
||||
cache-prefix: ${{ needs.prepare-workflow.outputs.cache-seed }}|3.10.11
|
||||
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
|
||||
environment: staging
|
||||
skip-code-coverage: true
|
||||
latest-release: "${{ needs.prepare-workflow.outputs.latest-release }}"
|
||||
secrets: inherit
|
||||
|
||||
fedora-37-pkg-download-tests:
|
||||
name: Test Fedora 37 Package Downloads
|
||||
if: ${{ fromJSON(needs.prepare-workflow.outputs.jobs)['test-pkg-download'] && fromJSON(needs.prepare-workflow.outputs.runners)['self-hosted'] }}
|
||||
|
@ -2680,7 +2631,6 @@ jobs:
|
|||
- debian-10
|
||||
- debian-11
|
||||
- debian-11-arm64
|
||||
- fedora-36
|
||||
- fedora-37
|
||||
- fedora-38
|
||||
- opensuse-15
|
||||
|
@ -2725,8 +2675,6 @@ jobs:
|
|||
- debian-10-pkg-download-tests
|
||||
- debian-11-pkg-download-tests
|
||||
- debian-11-arm64-pkg-download-tests
|
||||
- fedora-36-pkg-download-tests
|
||||
- fedora-36-arm64-pkg-download-tests
|
||||
- fedora-37-pkg-download-tests
|
||||
- fedora-37-arm64-pkg-download-tests
|
||||
- fedora-38-pkg-download-tests
|
||||
|
|
4
.github/workflows/templates/ci.yml.jinja
vendored
4
.github/workflows/templates/ci.yml.jinja
vendored
|
@ -116,7 +116,7 @@ on:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --next-release --template-only
|
||||
else
|
||||
tools changelog update-release-notes --template-only
|
||||
|
@ -126,7 +126,7 @@ on:
|
|||
shell: bash
|
||||
if: ${{ startsWith(github.event.ref, 'refs/tags') == false }}
|
||||
run: |
|
||||
if [ "${{ github.base_ref || github.ref_name }}" == "master" ]; then
|
||||
if [ "${{ needs.prepare-workflow.outputs.release-changelog-target }}" == "next-major-release" ]; then
|
||||
tools changelog update-release-notes --draft <%- if prepare_actual_release %> --release <%- endif %> --next-release
|
||||
tools changelog update-release-notes <%- if prepare_actual_release %> --release <%- endif %> --next-release
|
||||
else
|
||||
|
|
10
.github/workflows/templates/layout.yml.jinja
vendored
10
.github/workflows/templates/layout.yml.jinja
vendored
|
@ -91,6 +91,7 @@ jobs:
|
|||
cache-seed: ${{ steps.set-cache-seed.outputs.cache-seed }}
|
||||
latest-release: ${{ steps.get-salt-releases.outputs.latest-release }}
|
||||
releases: ${{ steps.get-salt-releases.outputs.releases }}
|
||||
release-changelog-target: ${{ steps.get-release-changelog-target.outputs.release-changelog-target }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -305,6 +306,12 @@ jobs:
|
|||
id: set-cache-seed
|
||||
run: |
|
||||
echo "cache-seed=${{ env.CACHE_SEED }}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Get Release Changelog Target
|
||||
id: get-release-changelog-target
|
||||
run: |
|
||||
tools ci get-release-changelog-target ${{ github.event_name }}
|
||||
|
||||
<%- endblock prepare_workflow_job %>
|
||||
<%- endif %>
|
||||
|
||||
|
@ -316,6 +323,9 @@ jobs:
|
|||
name: Set the ${{ github.workflow }} Pipeline Exit Status
|
||||
if: always()
|
||||
runs-on: ubuntu-latest
|
||||
<%- if workflow_slug == "nightly" %>
|
||||
environment: <{ workflow_slug }>
|
||||
<%- endif %>
|
||||
needs:
|
||||
<%- for need in prepare_workflow_needs.iter(consume=True) %>
|
||||
- <{ need }>
|
||||
|
|
29
.github/workflows/templates/nightly.yml.jinja
vendored
29
.github/workflows/templates/nightly.yml.jinja
vendored
|
@ -116,3 +116,32 @@ concurrency:
|
|||
tools pkg repo publish <{ gh_environment }> --salt-version=${{ needs.prepare-workflow.outputs.salt-version }} artifacts/pkgs/repo/
|
||||
|
||||
<%- endblock jobs %>
|
||||
|
||||
<%- block set_pipeline_exit_status_extra_steps %>
|
||||
|
||||
<%- if workflow_slug == "nightly" %>
|
||||
|
||||
- name: Notify Slack
|
||||
id: slack
|
||||
uses: slackapi/slack-github-action@v1.24.0
|
||||
with:
|
||||
payload: |
|
||||
{
|
||||
"text": "Nightly Workflow build result: ${{ job.status }}\n${{ github.event.head_commit.url }}",
|
||||
"blocks": [
|
||||
{
|
||||
"type": "section",
|
||||
"text": {
|
||||
"type": "mrkdwn",
|
||||
"text": "GitHub Action build result: ${{ job.status }}\n${{ github.event.head_commit.url }}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
env:
|
||||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
||||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
|
||||
|
||||
<%- endif %>
|
||||
|
||||
<%- endblock set_pipeline_exit_status_extra_steps %>
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
("debian-10", "Debian 10", "x86_64"),
|
||||
("debian-11", "Debian 11", "x86_64"),
|
||||
("debian-11-arm64", "Debian 11 Arm64", "aarch64"),
|
||||
("fedora-36", "Fedora 36", "x86_64"),
|
||||
("fedora-36-arm64", "Fedora 36 Arm64", "aarch64"),
|
||||
("fedora-37", "Fedora 37", "x86_64"),
|
||||
("fedora-37-arm64", "Fedora 37 Arm64", "aarch64"),
|
||||
("fedora-38", "Fedora 38", "x86_64"),
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
("debian-10", "Debian 10", "x86_64", "deb"),
|
||||
("debian-11", "Debian 11", "x86_64", "deb"),
|
||||
("debian-11-arm64", "Debian 11 Arm64", "aarch64", "deb"),
|
||||
("fedora-36", "Fedora 36", "x86_64", "rpm"),
|
||||
("fedora-37", "Fedora 37", "x86_64", "rpm"),
|
||||
("fedora-38", "Fedora 38", "x86_64", "rpm"),
|
||||
("ubuntu-20.04", "Ubuntu 20.04", "x86_64", "deb"),
|
||||
|
|
|
@ -59,7 +59,6 @@
|
|||
("debian-10", "Debian 10", "x86_64"),
|
||||
("debian-11", "Debian 11", "x86_64"),
|
||||
("debian-11-arm64", "Debian 11 Arm64", "aarch64"),
|
||||
("fedora-36", "Fedora 36", "x86_64"),
|
||||
("fedora-37", "Fedora 37", "x86_64"),
|
||||
("fedora-38", "Fedora 38", "x86_64"),
|
||||
("opensuse-15", "Opensuse 15", "x86_64"),
|
||||
|
|
|
@ -224,7 +224,7 @@ jobs:
|
|||
run: |
|
||||
tools --timestamps --timeout-secs=1800 vm testplan --skip-requirements-install \
|
||||
-E INSTALL_TYPE -E SALT_RELEASE -E SALT_REPO_ARCH -E SALT_REPO_TYPE -E SALT_REPO_USER -E SALT_REPO_PASS \
|
||||
-E SALT_REPO_DOMAIN_RELEASE -E SALT_REPO_DOMAIN_STAGING \
|
||||
-E SALT_REPO_DOMAIN_RELEASE -E SALT_REPO_DOMAIN_STAGING -E LATEST_SALT_RELEASE \
|
||||
--nox-session=${{ inputs.nox-session }} ${{ inputs.distro-slug }} -- download-pkgs
|
||||
|
||||
- name: Run Package Download Tests
|
||||
|
@ -241,7 +241,7 @@ jobs:
|
|||
run: |
|
||||
tools --timestamps --no-output-timeout-secs=1800 --timeout-secs=14400 vm test --skip-requirements-install \
|
||||
-E INSTALL_TYPE -E SALT_RELEASE -E SALT_REPO_ARCH -E SALT_REPO_TYPE -E SALT_REPO_USER -E SALT_REPO_PASS \
|
||||
-E SALT_REPO_DOMAIN_RELEASE -E SALT_REPO_DOMAIN_STAGING \
|
||||
-E SALT_REPO_DOMAIN_RELEASE -E SALT_REPO_DOMAIN_STAGING -E LATEST_SALT_RELEASE \
|
||||
--nox-session=${{ inputs.nox-session }} --rerun-failures ${{ inputs.distro-slug }} -- download-pkgs
|
||||
|
||||
- name: Combine Coverage Reports
|
||||
|
|
|
@ -234,7 +234,7 @@ jobs:
|
|||
run: |
|
||||
tools --timestamps --timeout-secs=1800 vm testplan --skip-requirements-install \
|
||||
-E INSTALL_TYPE -E SALT_RELEASE -E SALT_REPO_ARCH -E SALT_REPO_TYPE -E SALT_REPO_USER -E SALT_REPO_PASS \
|
||||
-E SALT_REPO_DOMAIN_RELEASE -E SALT_REPO_DOMAIN_STAGING \
|
||||
-E SALT_REPO_DOMAIN_RELEASE -E SALT_REPO_DOMAIN_STAGING -E LATEST_SALT_RELEASE \
|
||||
--nox-session=${{ inputs.nox-session }} ${{ inputs.distro-slug }} -- download-pkgs
|
||||
|
||||
- name: Run Package Download Tests
|
||||
|
@ -252,7 +252,7 @@ jobs:
|
|||
run: |
|
||||
tools --timestamps --no-output-timeout-secs=1800 --timeout-secs=14400 vm test --skip-requirements-install \
|
||||
-E INSTALL_TYPE -E SALT_RELEASE -E SALT_REPO_ARCH -E SALT_REPO_TYPE -E SALT_REPO_USER -E SALT_REPO_PASS \
|
||||
-E SALT_REPO_DOMAIN_RELEASE -E SALT_REPO_DOMAIN_STAGING \
|
||||
-E SALT_REPO_DOMAIN_RELEASE -E SALT_REPO_DOMAIN_STAGING -E LATEST_SALT_RELEASE \
|
||||
--nox-session=${{ inputs.nox-session }} --rerun-failures ${{ inputs.distro-slug }} -- download-pkgs
|
||||
|
||||
- name: Combine Coverage Reports
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -23,6 +23,7 @@ Pipfile.lock
|
|||
# - /some/path$ git clone https://github.com/thatch45/salt.git
|
||||
# - /some/path$ virtualenv --python=/usr/bin/python2.6 salt
|
||||
/env/
|
||||
/.env/
|
||||
/bin/
|
||||
/etc/
|
||||
/include/
|
||||
|
|
|
@ -94,19 +94,6 @@ repos:
|
|||
hooks:
|
||||
|
||||
# ----- Packaging Requirements ------------------------------------------------------------------------------------>
|
||||
- id: pip-tools-compile
|
||||
alias: compile-pkg-linux-3.7-zmq-requirements
|
||||
name: Linux Packaging Py3.7 ZeroMQ Requirements
|
||||
files: ^requirements/((base|zeromq|crypto)\.txt|static/pkg/(linux\.in|py3\.7/linux\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=linux
|
||||
- --include=requirements/base.txt
|
||||
- --include=requirements/zeromq.txt
|
||||
- requirements/static/pkg/linux.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-pkg-linux-3.8-zmq-requirements
|
||||
name: Linux Packaging Py3.8 ZeroMQ Requirements
|
||||
|
@ -159,19 +146,6 @@ repos:
|
|||
- --include=requirements/zeromq.txt
|
||||
- requirements/static/pkg/linux.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-pkg-freebsd-3.7-zmq-requirements
|
||||
name: FreeBSD Packaging Py3.7 ZeroMQ Requirements
|
||||
files: ^requirements/((base|zeromq|crypto)\.txt|static/pkg/(freebsd\.in|py3\.7/freebsd\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=freebsd
|
||||
- --include=requirements/base.txt
|
||||
- --include=requirements/zeromq.txt
|
||||
- requirements/static/pkg/freebsd.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-pkg-freebsd-3.8-zmq-requirements
|
||||
name: FreeBSD Packaging Py3.8 ZeroMQ Requirements
|
||||
|
@ -260,18 +234,6 @@ repos:
|
|||
- --include=requirements/darwin.txt
|
||||
- requirements/static/pkg/darwin.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-pkg-windows-3.7-zmq-requirements
|
||||
name: Windows Packaging Py3.7 ZeroMQ Requirements
|
||||
files: ^requirements/((base|zeromq|crypto|windows)\.txt|static/pkg/(windows\.in|py3\.7/windows\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=windows
|
||||
- --include=requirements/windows.txt
|
||||
- requirements/static/pkg/windows.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-pkg-windows-3.8-zmq-requirements
|
||||
name: Windows Packaging Py3.8 ZeroMQ Requirements
|
||||
|
@ -323,23 +285,6 @@ repos:
|
|||
# <---- Packaging Requirements -------------------------------------------------------------------------------------
|
||||
|
||||
# ----- CI Requirements ------------------------------------------------------------------------------------------->
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-linux-3.7-zmq-requirements
|
||||
name: Linux CI Py3.7 ZeroMQ Requirements
|
||||
files: ^requirements/((base|zeromq|pytest)\.txt|static/((ci|pkg)/(linux\.in|common\.in)|pkg/py3\.7/linux\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=linux
|
||||
- --include=requirements/base.txt
|
||||
- --include=requirements/zeromq.txt
|
||||
- --include=requirements/pytest.txt
|
||||
- --include=requirements/static/pkg/linux.in
|
||||
- --include=requirements/static/ci/common.in
|
||||
- --pip-args=--constraint=requirements/static/pkg/py{py_version}/linux.txt
|
||||
- requirements/static/ci/linux.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-linux-3.8-zmq-requirements
|
||||
name: Linux CI Py3.8 ZeroMQ Requirements
|
||||
|
@ -408,19 +353,6 @@ repos:
|
|||
- --pip-args=--constraint=requirements/static/pkg/py{py_version}/linux.txt
|
||||
- requirements/static/ci/linux.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-linux-crypto-3.7-requirements
|
||||
name: Linux CI Py3.7 Crypto Requirements
|
||||
files: ^requirements/(crypto\.txt|static/ci/(crypto\.in|py3\.7/linux-crypto\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=linux
|
||||
- --out-prefix=linux
|
||||
- --pip-args=--constraint=requirements/static/pkg/py{py_version}/linux.txt
|
||||
- requirements/static/ci/crypto.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-linux-crypto-3.8-requirements
|
||||
name: Linux CI Py3.8 Crypto Requirements
|
||||
|
@ -475,23 +407,6 @@ repos:
|
|||
- --pip-args=--constraint=requirements/static/ci/py{py_version}/linux.txt
|
||||
- requirements/static/ci/crypto.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-freebsd-3.7-zmq-requirements
|
||||
name: FreeBSD CI Py3.7 ZeroMQ Requirements
|
||||
files: ^requirements/((base|zeromq|pytest)\.txt|static/((ci|pkg)/(freebsd|common)\.in|pkg/py3\.7/freebsd\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=freebsd
|
||||
- --include=requirements/base.txt
|
||||
- --include=requirements/zeromq.txt
|
||||
- --include=requirements/pytest.txt
|
||||
- --include=requirements/static/pkg/freebsd.in
|
||||
- --include=requirements/static/ci/common.in
|
||||
- --pip-args=--constraint=requirements/static/pkg/py{py_version}/freebsd.txt
|
||||
- requirements/static/ci/freebsd.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-freebsd-3.8-zmq-requirements
|
||||
name: FreeBSD CI Py3.8 ZeroMQ Requirements
|
||||
|
@ -560,19 +475,6 @@ repos:
|
|||
- --pip-args=--constraint=requirements/static/pkg/py{py_version}/freebsd.txt
|
||||
- requirements/static/ci/freebsd.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-freebsd-crypto-3.7-requirements
|
||||
name: FreeBSD CI Py3.7 Crypto Requirements
|
||||
files: ^requirements/(crypto\.txt|static/ci/(crypto\.in|py3\.7/freebsd-crypto\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=freebsd
|
||||
- --out-prefix=freebsd
|
||||
- --pip-args=--constraint=requirements/static/ci/py{py_version}/freebsd.txt
|
||||
- requirements/static/ci/crypto.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-freebsd-crypto-3.8-requirements
|
||||
name: FreeBSD CI Py3.8 Crypto Requirements
|
||||
|
@ -714,22 +616,6 @@ repos:
|
|||
- --pip-args=--constraint=requirements/static/ci/py{py_version}/darwin.txt
|
||||
- requirements/static/ci/crypto.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-windows-3.7-zmq-requirements
|
||||
name: Windows CI Py3.7 ZeroMQ Requirements
|
||||
files: requirements/((base|zeromq|pytest)\.txt|static/((ci|pkg)/(windows|common)\.in|pkg/py3\.7/windows\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=windows
|
||||
- --include=requirements/windows.txt
|
||||
- --include=requirements/pytest.txt
|
||||
- --include=requirements/static/pkg/windows.in
|
||||
- --include=requirements/static/ci/common.in
|
||||
- --pip-args=--constraint=requirements/static/pkg/py{py_version}/windows.txt
|
||||
- requirements/static/ci/windows.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-windows-3.8-zmq-requirements
|
||||
name: Windows CI Py3.8 ZeroMQ Requirements
|
||||
|
@ -794,19 +680,6 @@ repos:
|
|||
- --pip-args=--constraint=requirements/static/pkg/py{py_version}/windows.txt
|
||||
- requirements/static/ci/windows.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-windows-crypto-3.7-requirements
|
||||
name: Windows CI Py3.7 Crypto Requirements
|
||||
files: ^requirements/(crypto\.txt|static/ci/(crypto\.in|py3\.7/windows-crypto\.txt))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=windows
|
||||
- --out-prefix=windows
|
||||
- --pip-args=--constraint=requirements/static/ci/py{py_version}/windows.txt
|
||||
- requirements/static/ci/crypto.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-windows-crypto-3.8-requirements
|
||||
name: Windows CI Py3.8 Crypto Requirements
|
||||
|
@ -863,22 +736,6 @@ repos:
|
|||
|
||||
|
||||
# ----- Cloud CI Requirements ------------------------------------------------------------------------------------->
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-cloud-3.7-requirements
|
||||
name: Cloud CI Py3.7 Requirements
|
||||
files: ^requirements/((base|zeromq|pytest)\.txt|static/(pkg/linux\.in|ci/((cloud|common)\.in|py3\.7/cloud\.txt)))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --include=requirements/base.txt
|
||||
- --include=requirements/zeromq.txt
|
||||
- --include=requirements/pytest.txt
|
||||
- --include=requirements/static/pkg/linux.in
|
||||
- --include=requirements/static/ci/common.in
|
||||
- --pip-args=--constraint=requirements/static/ci/py{py_version}/linux.txt
|
||||
- requirements/static/ci/cloud.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-cloud-3.8-requirements
|
||||
name: Cloud CI Py3.8 Requirements
|
||||
|
@ -929,19 +786,6 @@ repos:
|
|||
# <---- Cloud CI Requirements --------------------------------------------------------------------------------------
|
||||
|
||||
# ----- Doc CI Requirements --------------------------------------------------------------------------------------->
|
||||
- id: pip-tools-compile
|
||||
alias: compile-doc-requirements
|
||||
name: Docs CI Py3.7 Requirements
|
||||
files: ^requirements/((base|zeromq|pytest)\.txt|static/ci/(docs|common|linux)\.in|static/pkg/linux\.in|static/pkg/.*/linux\.txt)$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=linux
|
||||
- --include=requirements/base.txt
|
||||
- --include=requirements/zeromq.txt
|
||||
- requirements/static/ci/docs.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-doc-requirements
|
||||
name: Docs CI Py3.8 Requirements
|
||||
|
@ -984,23 +828,6 @@ repos:
|
|||
# <---- Doc CI Requirements ----------------------------------------------------------------------------------------
|
||||
|
||||
# ----- Lint CI Requirements -------------------------------------------------------------------------------------->
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-lint-3.7-requirements
|
||||
name: Lint CI Py3.7 Requirements
|
||||
files: ^requirements/((base|zeromq)\.txt|static/(pkg/linux\.in|ci/(linux\.in|common\.in|lint\.in|py3\.7/linux\.txt)))$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --platform=linux
|
||||
- --include=requirements/base.txt
|
||||
- --include=requirements/zeromq.txt
|
||||
- --include=requirements/static/pkg/linux.in
|
||||
- --include=requirements/static/ci/linux.in
|
||||
- --include=requirements/static/ci/common.in
|
||||
- --pip-args=--constraint=requirements/static/ci/py{py_version}/linux.txt
|
||||
- requirements/static/ci/lint.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-lint-3.8-requirements
|
||||
name: Lint CI Py3.8 Requirements
|
||||
|
@ -1093,17 +920,6 @@ repos:
|
|||
# <---- Changelog --------------------------------------------------------------------------------------------------
|
||||
|
||||
# ----- Invoke ---------------------------------------------------------------------------------------------------->
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-invoke-3.7-requirements
|
||||
name: Linux CI Py3.7 Invoke Requirements
|
||||
files: ^requirements/static/ci/(invoke\.in|py3.7/(invoke|linux)\.txt)$
|
||||
pass_filenames: false
|
||||
args:
|
||||
- -v
|
||||
- --py-version=3.7
|
||||
- --pip-args=--constraint=requirements/static/ci/py{py_version}/linux.txt
|
||||
- requirements/static/ci/invoke.in
|
||||
|
||||
- id: pip-tools-compile
|
||||
alias: compile-ci-invoke-3.8-requirements
|
||||
name: Linux CI Py3.8 Invoke Requirements
|
||||
|
@ -1197,8 +1013,8 @@ repos:
|
|||
rev: v2.37.2
|
||||
hooks:
|
||||
- id: pyupgrade
|
||||
name: Drop six usage and Py2 support
|
||||
args: [--py3-plus, --keep-mock]
|
||||
name: Upgrade code for Py3.8+
|
||||
args: [--py38-plus, --keep-mock]
|
||||
exclude: >
|
||||
(?x)^(
|
||||
salt/client/ssh/ssh_py_shim.py
|
||||
|
@ -1235,7 +1051,7 @@ repos:
|
|||
alias: rewrite-tests
|
||||
name: Rewrite Salt's Test Suite
|
||||
files: ^tests/.*\.py$
|
||||
args: [--silent, -E, fix_asserts, -E, fix_docstrings]
|
||||
args: [--silent, -E, fix_asserts, -E, fix_docstrings, -E, fix_tornado_imports]
|
||||
|
||||
- repo: https://github.com/timothycrosley/isort
|
||||
rev: 5.12.0
|
||||
|
@ -1320,6 +1136,7 @@ repos:
|
|||
- msgpack==1.0.3
|
||||
- packaging
|
||||
- looseversion
|
||||
- tornado
|
||||
|
||||
- repo: https://github.com/saltstack/invoke-pre-commit
|
||||
rev: v1.9.0
|
||||
|
@ -1339,6 +1156,7 @@ repos:
|
|||
- msgpack==1.0.3
|
||||
- packaging
|
||||
- looseversion
|
||||
- tornado
|
||||
|
||||
- repo: https://github.com/saltstack/invoke-pre-commit
|
||||
rev: v1.9.0
|
||||
|
@ -1362,6 +1180,7 @@ repos:
|
|||
- msgpack==1.0.3
|
||||
- packaging
|
||||
- looseversion
|
||||
- tornado
|
||||
|
||||
- repo: https://github.com/saltstack/invoke-pre-commit
|
||||
rev: v1.9.0
|
||||
|
@ -1385,6 +1204,7 @@ repos:
|
|||
- msgpack==1.0.3
|
||||
- packaging
|
||||
- looseversion
|
||||
- tornado
|
||||
|
||||
- repo: https://github.com/saltstack/invoke-pre-commit
|
||||
rev: v1.9.0
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
[rstcheck]
|
||||
ignore_directives=
|
||||
automodule,
|
||||
autoclass,
|
||||
autofunction,
|
||||
conf_proxy,
|
||||
conf_log,
|
||||
conf_master,
|
||||
conf_minion,
|
||||
releasestree,
|
||||
jinja_ref,
|
||||
salt:event
|
||||
ignore_roles=
|
||||
conf_master,
|
||||
conf_minion,
|
||||
conf_proxy,
|
||||
conf_log,
|
||||
formula_url,
|
||||
issue,
|
||||
pull,
|
||||
blob,
|
||||
jinja_ref
|
||||
ignore_substitutions=
|
||||
saltrepo,
|
||||
repo_primary_branch,
|
||||
windownload,
|
||||
osxdownloadpy3
|
335
DEPENDENCIES.md
335
DEPENDENCIES.md
|
@ -1,210 +1,125 @@
|
|||
| **OSS Software Name** | **Version** | **Primary License** | **Source Code Download URL** | **Author** | **Copyright Year** |
|
||||
| --- | :--- | --- | --- | --- | ---: |
|
||||
| | | | | | |
|
||||
| Cheetah3 | 3.1.0 | MIT/X11 | https://pypi.org/project/Cheetah3/ | Travis Rudd | 2017-2019 |
|
||||
| CherryPy | 17.3.0 | BSD | https://pypi.org/project/CherryPy/ | CherryPy Team | 2004-2019 |
|
||||
| Genshi | 0.7.3 | BSD | https://pypi.org/project/Genshi/ | Edgewall Software | 2006-2010 |
|
||||
| GitPython | 3.1.3 | BSD | https://pypi.org/project/GitPython/ | Sebastian Thiel, Michael Trier | 2008, 2009 |
|
||||
| Jinja2 | 2.11.2 | BSD | https://pypi.org/project/Jinja2 | Armin Ronacher | 2007 |
|
||||
| Mako | 1.1.3 | MIT/X11 | https://pypi.org/project/Mako/ | Mike Bayer | 2006-2020 |
|
||||
| MarkupSafe | 1.1.1 | BSD | https://pypi.org/project/MarkupSafe/ | Armin Ronacher | 2010 |
|
||||
| PyJWT | 1.7.1 | MIT/X11 | https://pypi.org/project/PyJWT/ | Jose Padilla | 2015 |
|
||||
| PyNaCl | 1.4.0 | Apache License, V2.0 | https://pypi.org/project/PyNaCl/ | The PyNaCl developers | 2004 |
|
||||
| PyYAML | 5.3.1 | MIT/X11 | https://pypi.org/project/PyYAML/ | Kirill Simonov | 2006-2019 |
|
||||
| WerkZeug | 1.0.1 | BSD | https://pypi.org/project/Werkzeug/ | Armin Ronacher | 2007 |
|
||||
| adal | 1.2.4 | MIT/X11 | https://pypi.org/project/adal | Microsoft Corporation | 2015 |
|
||||
| apache-libcloud | 2.0.0 | Apache License, V2.0 | https://pypi.org/project/apache-libcloud/ | Apache Software Foundation | 2004 |
|
||||
| appdirs | 1.4.4 | MIT/X11 | https://pypi.org/project/appdirs/ | Trent Mick | 2010 |
|
||||
| asn1crypto | 1.3.0 | MIT/X11 | https://pypi.org/project/asn1crypto/ | wbond | 2015-2019 |
|
||||
| attrs | 19.3.1 | MIT/X11 | https://pypi.org/project/attrs/ | Hynek Schlawack | 2015 |
|
||||
| aws-sam-translator | 1.25.0 | Apache License, V2.0 | https://pypi.org/project/aws-sam-translator/ | Amazon Web Services | 2004 |
|
||||
| aws-xray-sdk | 2.6.0 | Apache License, V2.0 | https://pypi.org/project/aws-xray-sdk/ | Amazon Web Services | 2004 |
|
||||
| azure | 4.0.0 | MIT/X11 | https://pypi.org/project/azure | Microsoft Corporation | 2016 |
|
||||
| azure-applicationinsights | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-applicationinsights/ | Microsoft Corporation | 2016 |
|
||||
| azure-batch | 4.1.3 | MIT/X11 | https://pypi.org/project/azure-batch/ | Microsoft Corporation | 2016 |
|
||||
| azure-common | 1.1.25 | MIT/X11 | https://pypi.org/project/azure-common/ | Microsoft Corporation | 2016 |
|
||||
| azure-cosmosdb-nspkg | 2.0.2 | Apache License, V2.0 | https://pypi.org/project/azure-cosmosdb-nspkg | Microsoft Corporation | 2004 |
|
||||
| azure-cosmosdb-table | 1.0.6 | Apache License, V2.0 | https://pypi.org/project/azure-cosmosdb-table/ | Microsoft Corporation | 2004 |
|
||||
| azure-datalake-store | 0.0.48 | MIT/X11 | https://pypi.org/project/azure-datalake-store/ | Microsoft Corporation | 2016 |
|
||||
| azure-eventgrid | 1.3.0 | MIT/X11 | https://pypi.org/project/azure-eventgrid/ | Microsoft Corporation | 2016 |
|
||||
| azure-graphrbac | 0.40.0 | MIT/X11 | https://pypi.org/project/azure-graphrbac/ | Microsoft Corporation | 2016 |
|
||||
| azure-keyvault | 1.1.0 | MIT/X11 | https://pypi.org/project/azure-keyvault/ | Microsoft Corporation | 2016 |
|
||||
| azure-loganalytics | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-loganalytics/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt | 4.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-advisor | 1.0.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-advisor/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-applicationinsights | 0.1.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-applicationinsights/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-authorization | 0.50.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-authorization/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-batch | 5.0.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-batch/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-batchai | 2.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-batchai/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-billing | 0.2.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-billing/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-cdn | 3.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-cdn/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-cognitiveservices | 3.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-cognitiveservices/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-commerce | 1.0.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-commerce/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-compute | 4.6.2 | MIT/X11 | https://pypi.org/project/azure-mgmt-compute/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-consumption | 2.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-consumption/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-containerinstance | 1.5.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-containerinstance/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-containerregistry | 2.8.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-containerregistry/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-containerservice | 4.4.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-containerservice/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-cosmosdb | 0.4.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-cosmosdb/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-datafactory | 0.6.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-datafactory/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-datalake-analytics | 0.6.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-datalake-analytics/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-datalake-nspkg | 3.0.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-datalake-nspkg/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-datalake-store | 0.5.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-datalake-store/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-datamigration | 1.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-datamigration/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-devspaces | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-devspaces/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-devtestlabs | 2.2.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-devtestlabs/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-dns | 2.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-dns/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-eventgrid | 1.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-eventgrid/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-eventhub | 2.6.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-eventhub/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-hanaonazure | 0.1.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-hanaonazure/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-iotcentral | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-iotcentral/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-iothub | 0.5.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-iothub/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-iothubprovisioningservices | 0.2.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-iothubprovisioningservices/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-keyvault | 1.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-keyvault/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-loganalytics | 0.2.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-loganalytics/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-logic | 3.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-logic/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-machinelearningcompute | 0.4.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-machinelearningcompute/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-managementgroups | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-managementgroups/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-managementpartner | 0.1.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-managementpartner/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-maps | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-maps/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-marketplaceordering | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-marketplaceordering/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-media | 1.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-media/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-monitor | 0.5.2 | MIT/X11 | https://pypi.org/project/azure-mgmt-monitor/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-msi | 0.2.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-msi/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-network | 2.7.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-network/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-notificationhubs | 2.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-notificationhubs/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-nspkg | 3.0.2 | MIT/X11 | https://pypi.org/project/azure-mgmt-nspkg/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-policyinsights | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-policyinsights/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-powerbiembedded | 2.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-powerbiembedded/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-rdbms | 1.9.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-rdbms/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-recoveryservices | 0.3.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-recoveryservices/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-recoveryservicesbackup | 0.3.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-recoveryservicesbackup/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-redis | 5.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-redis/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-relay | 0.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-relay/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-reservations | 0.2.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-reservations/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-resource | 2.2.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-resource/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-scheduler | 2.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-scheduler/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-search | 2.1.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-search/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-servicebus | 0.5.3 | MIT/X11 | https://pypi.org/project/azure-mgmt-servicebus/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-servicefabric | 0.2.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-servicefabric/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-signalr | 0.1.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-signalr/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-sql | 0.9.1 | MIT/X11 | https://pypi.org/project/azure-mgmt-sql/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-storage | 2.0.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-storage/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-subscription | 0.2.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-subscription/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-trafficmanager | 0.50.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-trafficmanager/ | Microsoft Corporation | 2016 |
|
||||
| azure-mgmt-web | 0.35.0 | MIT/X11 | https://pypi.org/project/azure-mgmt-web/ | Microsoft Corporation | 2016 |
|
||||
| azure-nspkg | 3.0.2 | MIT/X11 | https://pypi.org/project/azure-nspkg/ | Microsoft Corporation | 2016 |
|
||||
| azure-servicebus | 0.21.1 | MIT/X11 | https://pypi.org/project/azure-servicebus/ | Microsoft Corporation | 2016 |
|
||||
| azure-servicefabric | 6.3.0.0 | MIT/X11 | https://pypi.org/project/azure-servicefabric/ | Microsoft Corporation | 2016 |
|
||||
| azure-servicemanagement-legacy | 0.20.7 | Apache License, V2.0 | https://pypi.org/project/azure-servicemanagement-legacy/ | Microsoft Corporation | 2016 |
|
||||
| azure-storage-blob | 1.5.0 | MIT/X11 | https://pypi.org/project/azure-storage-blob/ | Microsoft Corporation | 2017 |
|
||||
| azure-storage-common | 1.4.2 | MIT/X11 | https://pypi.org/project/azure-storage-common/ | Microsoft Corporation | 2017 |
|
||||
| azure-storage-file | 1.4.0 | MIT/X11 | https://pypi.org/project/azure-storage-file/ | Microsoft Corporation | 2016 |
|
||||
| azure-storage-queue | 1.4.0 | MIT/X11 | https://pypi.org/project/azure-storage-queue/ | Microsoft Corporation | 2017 |
|
||||
| bcrypt | 3.1.7 | Apache License, V2.0 | https://pypi.org/project/bcrypt/ | The Python Cryptographic Authority | 2013 |
|
||||
| boto | 2.49.0 | MIT/X11 | https://pypi.org/project/boto/ | Mitch Garnaatt | 2013 |
|
||||
| boto3 | 1.14.16 | Apache License, V2.0 | https://pypi.org/project/boto3/ | AWS | 2019 |
|
||||
| botocore | 1.17.16 | Apache License, V2.0 | https://pypi.org/project/botocore/ | AWS | 2019 |
|
||||
| cachetools | 4.1.1 | MIT/X11 | https://pypi.org/project/cachetools/ | tkem | 2014-2020 |
|
||||
| cassandra-driver | 3.24.0 | Apache License, V2.0 | https://pypi.org/project/cassandra-driver/ | DataStax | 2013 |
|
||||
| certifi | 2020.6.20 | Mozilla Public License, V2.0 | https://pypi.org/project/certifi/ | Kenneth Reitz | 2013 |
|
||||
| certvalidator | 0.11.1 | MIT/X11 | https://pypi.org/project/certvalidator/ | wbond | 2015-2018 |
|
||||
| cffi | 1.14.0 | MIT/X11 | https://pypi.org/project/cffi/ | Armin Rigo, Maciej Fijalkowski | 2005-2007 |
|
||||
| cfn-lint | 0.33.2 | MIT/X11 | https://pypi.org/project/cfn-lint/ | kddejong | 2018 |
|
||||
| chardet | 3.0.4 | GNU Lesser General Public License, V2.1 | https://pypi.org/project/chardet/ | Daniel Blanchard | 2012 |
|
||||
| cheroot | 8.3.0 | BSD | https://pypi.org/project/cheroot/ | CherryPy Team | 2004-2020 |
|
||||
| click | 7.1.2 | BSD | https://pypi.org/project/click/ | Pallets | 2014 |
|
||||
| contextlib2 | 0.6.0.post1 | Python License | https://pypi.org/project/contextlib2/ | Nick Coghlan | 2015 |
|
||||
| croniter | 0.3.34 | MIT/X11 | https://pypi.org/project/croniter/ | Matsumoto Taichi, kiorky | 2014 |
|
||||
| cryptography | 2.9.2 | BSD | https://pypi.org/project/cryptography/ | The cryptography developers | 2014 |
|
||||
| decorator | 4.4.2 | BSD | https://pypi.org/project/decorator/ | Michele Simionato | 2005-2018 |
|
||||
| distlib | 0.3.1 | Python License | https://pypi.org/project/distlib/ | Vinay Sajip | 2012 |
|
||||
| dnspython | 1.16.0 | BSD | https://pypi.org/project/dnspython/ | Bob Halley | 2001-2017 |
|
||||
| docker | 4.2.2 | Apache License, V2.0 | https://pypi.org/project/docker/ | Joffery F | 2016 |
|
||||
| docutils | 0.15.2 | BSD | https://pypi.org/project/docutils/ | David Goodger | 2011 |
|
||||
| ecdsa | 0.15 | MIT/X11 | https://pypi.org/project/ecdsa/ | Brian Warner | 2010 |
|
||||
| filelock | 3.0.12 | Public Domain | https://pypi.org/project/filelock/ | Benedikt Schmitt | 2018 |
|
||||
| future | 0.18.2 | MIT/X11 | https://pypi.org/project/future/ | Ed Schofield | 2013-2019 |
|
||||
| geomet | 0.2.1.post1 | Apache License, V2.0 | https://pypi.org/project/geomet/ | Lars Butler | 2014 |
|
||||
| gitdb | 4.0.5 | BSD | https://pypi.org/project/gitdb/ | Sebastian Thiel | 2010, 2011 |
|
||||
| google-auth | 1.18.0 | Apache License, V2.0 | https://pypi.org/project/google-auth/ | Google Cloud Platform | 2016 |
|
||||
| hgtools | 8.2.0 | MIT/X11 | https://pypi.org/project/hgtools/ | Jason R. Coombs | 2019 |
|
||||
| idna | 2.8 | BSD | https://pypi.org/project/idna/ | Kim Davies | 2013-2020 |
|
||||
| importlib-metadata | 1.7.0 | Apache License, V2.0 | https://pypi.org/project/importlib-metadata/ | Barry Warsaw | 2017-2019 |
|
||||
| ipaddress | 1.0.23 | Python License | https://pypi.org/project/ipaddress/ | Philipp Hagemeister | 2014 |
|
||||
| isodate | 0.6.0 | BSD | https://pypi.org/project/isodate/ | Gerhard Weis | 2009 |
|
||||
| jaraco.functools | 3.0.1 | MIT/X11 | https://pypi.org/project/jaraco.functools/ | Jason R. Coombs | 2020 |
|
||||
| jmespath | 0.10.0 | MIT/X11 | https://pypi.org/project/jmespath/ | James Saryerwinnie | 2013 |
|
||||
| jsondiff | 1.1.2 | MIT/X11 | https://pypi.org/project/jsondiff/ | Zoomer Analytics LLC | 2015 |
|
||||
| jsonpatch | 1.26 | BSD | https://pypi.org/project/jsonpatch/ | Stefan Kögl | 2011 |
|
||||
| jsonpickle | 1.4.1 | BSD | https://pypi.org/project/jsonpickle/ | David Aguilar | 2009-2018 |
|
||||
| jsonpointer | 2 | BSD | https://pypi.org/project/jsonpointer/ | Stefan Kögl | 2017 |
|
||||
| jsonschema | 3.2.0 | MIT/X11 | https://pypi.org/project/jsonschema/ | Julian Berman | 2013 |
|
||||
| junit-xml | 1.9 | MIT/X11 | https://pypi.org/project/junit-xml/ | Brian Beyer | 2013 |
|
||||
| junos-eznc | 2.4.0 | Apache License, V2.0 | https://pypi.org/project/junos-eznc/ | Jeremy Schulman, Nitin Kumar, Rick Sherman, Stacy Smith | 2018 |
|
||||
| jxmlease | 1.0.3 | MIT/X11 | https://pypi.org/project/jxmlease/ | Juniper Networks | 2015-2016 |
|
||||
| kazoo | 2.7.0 | Apache License, V2.0 | https://pypi.org/project/kazoo/ | Kazoo team | 2012 |
|
||||
| keyring | 5.7.1 | MIT/X11 | https://pypi.org/project/keyring/ | Kang Zhang | 2019 |
|
||||
| kubernetes | 3.0.0 | Apache License, V2.0 | https://pypi.org/project/kubernetes/ | Kubernetes | 2016 |
|
||||
| libnacl | 1.7.1 | Apache License, V2.0 | https://pypi.org/project/libnacl/ | Thomas S Hatch | 2014 |
|
||||
| lxml | 4.5.1 | BSD | https://pypi.org/project/lxml/ | lxml dev team | 2019 |
|
||||
| mock | 4.0.2 | BSD | https://pypi.org/project/mock/ | Testing Cabal | 2003-2013 |
|
||||
| more-itertools | 5.0.0 | MIT/X11 | https://pypi.org/project/more-itertools/ | Eric Rose | 2012 |
|
||||
| moto | 1.3.14 | Apache License, V2.0 | https://pypi.org/project/moto/ | Steve Pulec | 2004 |
|
||||
| msrest | 0.6.17 | MIT/X11 | https://pypi.org/project/msrest/ | Microsoft | 2016 |
|
||||
| msrestazure | 0.6.4 | MIT/X11 | https://pypi.org/project/msrestazure/ | Microsoft | 2016 |
|
||||
| natsort | 7.0.1 | MIT/X11 | https://pypi.org/project/natsort/ | Seth M. Morton | 2012-2020 |
|
||||
| ncclient | 0.6.7 | Apache License, V2.0 | https://pypi.org/project/ncclient/ | Shikhar Bhushan, Leonidas Poulopoulos, Ebben Aries, Einar Nilsen-Nygaard | 2004 |
|
||||
| netaddr | 0.8.0 | BSD | https://pypi.org/project/netaddr/ | Author: David P. D. Moss, Stefan Nordhausen et al | 2008 |
|
||||
| networkx | 2.4 | BSD | https://pypi.org/project/networkx/ | Aric Hagberg | 2004-2020 |
|
||||
| ntc-templates | 1.5.0 | Apache License, V2.0 | https://pypi.org/project/ntc-templates/ | Jason Edelman | 2015 |
|
||||
| oauthlib | 3.1.0 | BSD | https://pypi.org/project/oauthlib/ | The OAuthlib Community | 2019 |
|
||||
| oscrypto | 1.2.0 | MIT/X11 | https://pypi.org/project/oscrypto/ | wbond | 2015-2019 |
|
||||
| paramiko | 2.7.1 | GNU Lesser General Public License, V2.1 | https://pypi.org/project/paramiko/ | Jeff Forcier | 1999 |
|
||||
| passlib | 1.7.2 | BSD | https://pypi.org/project/passlib/ | Eli Collins | 2004 |
|
||||
| pathtools | 0.1.2 | MIT/X11 | https://pypi.org/project/pathtools/ | Yesudeep Mangalapilly | 2010 |
|
||||
| portend | 2.6 | MIT/X11 | https://pypi.org/project/portend/ | Jason R Coombs | 2018 |
|
||||
| psutil | 5.7.0 | BSD | https://pypi.org/project/psutil/ | Giampaolo Rodola | 2009 |
|
||||
| pyOpenSSL | 19.1.0 | Apache License, V2.0 | https://pypi.org/project/pyOpenSSL/ | The pyopenssl Developers | 2004 |
|
||||
| pyasn1 | 0.4.8 | BSD | https://pypi.org/project/pyasn1/ | Ilya Etingof | 2005-2020 |
|
||||
| pyasn1-modules | 0.2.8 | BSD | https://pypi.org/project/pyasn1-modules/ | Ilya Etingof | 2005-2020 |
|
||||
| pycparser | 2.20 | BSD | https://pypi.org/project/pycparser/ | Eli Bendersky | 2008-2017 |
|
||||
| pygit2 | 1.2.1 | GNU General Public License, V2.0 | https://pypi.org/project/pygit2/ | J. David Ibáñez | 2012 |
|
||||
| pyinotify | 0.9.6 | MIT/X11 | https://pypi.org/project/pyinotify/ | Sebastien Martini | 2010 |
|
||||
| pyparsing | 2.4.7 | MIT/X11 | https://pypi.org/project/pyparsing/ | Paul McGuire | 2018 |
|
||||
| pyrsistent | 0.16.0 | MIT/X11 | https://pypi.org/project/pyrsistent/ | Tobias Gustafsson | 2019 |
|
||||
| pyserial | 3.4 | BSD | https://pypi.org/project/pyserial/ | Chris Liechti | 2001-2016 |
|
||||
| python-dateutil | 2.8.1 | Apache License, V2.0 | https://pypi.org/project/python-dateutil/ | Gustavo Niemeyer | 2017 |
|
||||
| python-etcd | 0.4.5 | MIT/X11 | https://pypi.org/project/python-etcd/ | Jose Plana | 2015 |
|
||||
| python-gnupg | 0.4.6 | BSD | https://pypi.org/project/python-gnupg/ | Vinay Sajip | 2008-2019 |
|
||||
| python-jose[cryptography] | 3.2.0 | MIT/X11 | https://pypi.org/project/python-jose/ | Michael Davis | 2015 |
|
||||
| pytz | 2020.1 | MIT/X11 | https://pypi.org/project/pytz/ | Stuart Bishop | 2015 |
|
||||
| pyvmomi | 7 | Apache License, V2.0 | https://pypi.org/project/pyvmomi/ | VMware, Inc. | 2004 |
|
||||
| requests | 2.24.0 | Apache License, V2.0 | https://pypi.org/project/requests/ | Kenneth Reitz | 2004 |
|
||||
| requests-oauthlib | 1.3.0 | BSD | https://pypi.org/project/requests-oauthlib/ | Kenneth Reitz | 2014 |
|
||||
| responses | 0.10.15 | Apache License, V2.0 | https://pypi.org/project/responses/ | David Cramer | 2004 |
|
||||
| rfc3987 | 1.3.8 | GNU General Public License, V3.0 | https://pypi.org/project/rfc3987/ | Daniel Gerber | 2007 |
|
||||
| rsa | 4.6 | Apache License, V2.0 | https://pypi.org/project/rsa/ | Sybren A. Stuvel | 2011 |
|
||||
| s3transfer | 0.3.3 | Apache License, V2.0 | https://pypi.org/project/s3transfer/ | Amazon Web Services | 2004 |
|
||||
| scp | 0.13.2 | GNU Lesser General Public License, V2.1 | https://pypi.org/project/scp/ | James Bardin | 2013 |
|
||||
| setproctitle | 1.1.10 | BSD | https://pypi.org/project/setproctitle/ | Daniele Varrazzo | 2009-2020 |
|
||||
| setuptools-scm | 4.1.2 | MIT/X11 | https://pypi.org/project/setuptools-scm/ | Ronny Pfannschmidt | 2010 |
|
||||
| six | 1.15.0 | MIT/X11 | https://pypi.org/project/six/ | Benjamin Peterson | 2010-2020 |
|
||||
| smmap | 3.0.4 | BSD | https://pypi.org/project/smmap/ | Sebastian Thiel | 2010, 2011 |
|
||||
| sshpubkeys | 3.1.0 | BSD | https://pypi.org/project/sshpubkeys/ | Olli Jarva | 2014 |
|
||||
| strict-rfc3339 | 0.7 | GNU General Public License, V3.0 | https://pypi.org/project/strict-rfc3339/ | Daniel Richman, Adam Greig | 2007 |
|
||||
| tempora | 3.0.0 | MIT/X11 | https://pypi.org/project/tempora/ | Jason R. Coombs | 2020 |
|
||||
| textfsm | 1.1.0 | Apache License, V2.0 | https://pypi.org/project/textfsm/ | Google | 2004 |
|
||||
| timelib | 0.2.4 | BSD | https://pypi.org/project/timelib/ | Ralf Schmitt | 2009-2011 |
|
||||
| toml | 0.10.1 | MIT/X11 | https://pypi.org/project/toml/ | William Pearson | 2013-2019 |
|
||||
| transitions | 0.8.2 | MIT/X11 | https://pypi.org/project/transitions/ | Tal Yarkoni | 2014 - 2020 |
|
||||
| urllib3 | 1.25.9 | MIT/X11 | https://pypi.org/project/urllib3/ | Andrey Petrov | 2008-2020 |
|
||||
| vcert | 0.7.4 | ASL | https://pypi.org/project/vcert | Denis Subbotin | 2018 |
|
||||
| virtualenv | 20.0.25 | MIT | https://pypi.org/project/virtualenv | Bernat Gabor | 2020-202x |
|
||||
| watchdog | 0.10.3 | Apache License 2.0 | https://pypi.org/project/watchdog | Yesudeep Mangalapilly | 2012 |
|
||||
| websocket-client | 0.57.0 | BSD | https://pypi.org/project/websocket-client | liris | 2018 |
|
||||
| wrapt | 1.12.1 | BSD | https://pypi.org/project/wrapt | Graham Dumpleton | 2013-2019 |
|
||||
| xmltodict | 0.12.0 | MIT | https://pypi.org/project/xmltodict | Martin Blech | 2010 |
|
||||
| yamlordereddictloader | 0.4.0 | MIT License | https://pypi.org/project/yamlordereddictloader | François Ménabé | 2017 |
|
||||
| zc.lockfile | 2 | ZPL 2.1 | https://pypi.org/project/zc.lockfile | Zope Foundation | 2010 |
|
||||
| zipp | 3.1.0 | MIT | https://pypi.org/project/zipp | Jason R. Coombs | 2019 |
|
||||
| **OSS Software Name** | **Version** | **Primary License** | **Source Code Download URL** | **Author** | **Copyright Year** |
|
||||
| ------------------------- | :---------- | --------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------ | -----------------: |
|
||||
| | | | | | |
|
||||
| Cheetah3 | 3.1.0 | MIT/X11 | https://pypi.org/project/Cheetah3/ | Travis Rudd | 2017-2019 |
|
||||
| CherryPy | 17.3.0 | BSD | https://pypi.org/project/CherryPy/ | CherryPy Team | 2004-2019 |
|
||||
| Genshi | 0.7.3 | BSD | https://pypi.org/project/Genshi/ | Edgewall Software | 2006-2010 |
|
||||
| GitPython | 3.1.3 | BSD | https://pypi.org/project/GitPython/ | Sebastian Thiel, Michael Trier | 2008, 2009 |
|
||||
| Jinja2 | 2.11.2 | BSD | https://pypi.org/project/Jinja2 | Armin Ronacher | 2007 |
|
||||
| Mako | 1.1.3 | MIT/X11 | https://pypi.org/project/Mako/ | Mike Bayer | 2006-2020 |
|
||||
| MarkupSafe | 1.1.1 | BSD | https://pypi.org/project/MarkupSafe/ | Armin Ronacher | 2010 |
|
||||
| PyJWT | 1.7.1 | MIT/X11 | https://pypi.org/project/PyJWT/ | Jose Padilla | 2015 |
|
||||
| PyNaCl | 1.4.0 | Apache License, V2.0 | https://pypi.org/project/PyNaCl/ | The PyNaCl developers | 2004 |
|
||||
| PyYAML | 5.3.1 | MIT/X11 | https://pypi.org/project/PyYAML/ | Kirill Simonov | 2006-2019 |
|
||||
| WerkZeug | 1.0.1 | BSD | https://pypi.org/project/Werkzeug/ | Armin Ronacher | 2007 |
|
||||
| apache-libcloud | 2.0.0 | Apache License, V2.0 | https://pypi.org/project/apache-libcloud/ | Apache Software Foundation | 2004 |
|
||||
| appdirs | 1.4.4 | MIT/X11 | https://pypi.org/project/appdirs/ | Trent Mick | 2010 |
|
||||
| asn1crypto | 1.3.0 | MIT/X11 | https://pypi.org/project/asn1crypto/ | wbond | 2015-2019 |
|
||||
| attrs | 19.3.1 | MIT/X11 | https://pypi.org/project/attrs/ | Hynek Schlawack | 2015 |
|
||||
| aws-sam-translator | 1.25.0 | Apache License, V2.0 | https://pypi.org/project/aws-sam-translator/ | Amazon Web Services | 2004 |
|
||||
| aws-xray-sdk | 2.6.0 | Apache License, V2.0 | https://pypi.org/project/aws-xray-sdk/ | Amazon Web Services | 2004 |
|
||||
| bcrypt | 3.1.7 | Apache License, V2.0 | https://pypi.org/project/bcrypt/ | The Python Cryptographic Authority | 2013 |
|
||||
| boto | 2.49.0 | MIT/X11 | https://pypi.org/project/boto/ | Mitch Garnaatt | 2013 |
|
||||
| boto3 | 1.14.16 | Apache License, V2.0 | https://pypi.org/project/boto3/ | AWS | 2019 |
|
||||
| botocore | 1.17.16 | Apache License, V2.0 | https://pypi.org/project/botocore/ | AWS | 2019 |
|
||||
| cachetools | 4.1.1 | MIT/X11 | https://pypi.org/project/cachetools/ | tkem | 2014-2020 |
|
||||
| cassandra-driver | 3.24.0 | Apache License, V2.0 | https://pypi.org/project/cassandra-driver/ | DataStax | 2013 |
|
||||
| certifi | 2020.6.20 | Mozilla Public License, V2.0 | https://pypi.org/project/certifi/ | Kenneth Reitz | 2013 |
|
||||
| certvalidator | 0.11.1 | MIT/X11 | https://pypi.org/project/certvalidator/ | wbond | 2015-2018 |
|
||||
| cffi | 1.14.0 | MIT/X11 | https://pypi.org/project/cffi/ | Armin Rigo, Maciej Fijalkowski | 2005-2007 |
|
||||
| cfn-lint | 0.33.2 | MIT/X11 | https://pypi.org/project/cfn-lint/ | kddejong | 2018 |
|
||||
| chardet | 3.0.4 | GNU Lesser General Public License, V2.1 | https://pypi.org/project/chardet/ | Daniel Blanchard | 2012 |
|
||||
| cheroot | 8.3.0 | BSD | https://pypi.org/project/cheroot/ | CherryPy Team | 2004-2020 |
|
||||
| click | 7.1.2 | BSD | https://pypi.org/project/click/ | Pallets | 2014 |
|
||||
| contextlib2 | 0.6.0.post1 | Python License | https://pypi.org/project/contextlib2/ | Nick Coghlan | 2015 |
|
||||
| croniter | 0.3.34 | MIT/X11 | https://pypi.org/project/croniter/ | Matsumoto Taichi, kiorky | 2014 |
|
||||
| cryptography | 2.9.2 | BSD | https://pypi.org/project/cryptography/ | The cryptography developers | 2014 |
|
||||
| decorator | 4.4.2 | BSD | https://pypi.org/project/decorator/ | Michele Simionato | 2005-2018 |
|
||||
| distlib | 0.3.1 | Python License | https://pypi.org/project/distlib/ | Vinay Sajip | 2012 |
|
||||
| dnspython | 1.16.0 | BSD | https://pypi.org/project/dnspython/ | Bob Halley | 2001-2017 |
|
||||
| docker | 4.2.2 | Apache License, V2.0 | https://pypi.org/project/docker/ | Joffery F | 2016 |
|
||||
| docutils | 0.15.2 | BSD | https://pypi.org/project/docutils/ | David Goodger | 2011 |
|
||||
| ecdsa | 0.15 | MIT/X11 | https://pypi.org/project/ecdsa/ | Brian Warner | 2010 |
|
||||
| filelock | 3.0.12 | Public Domain | https://pypi.org/project/filelock/ | Benedikt Schmitt | 2018 |
|
||||
| future | 0.18.2 | MIT/X11 | https://pypi.org/project/future/ | Ed Schofield | 2013-2019 |
|
||||
| geomet | 0.2.1.post1 | Apache License, V2.0 | https://pypi.org/project/geomet/ | Lars Butler | 2014 |
|
||||
| gitdb | 4.0.5 | BSD | https://pypi.org/project/gitdb/ | Sebastian Thiel | 2010, 2011 |
|
||||
| google-auth | 1.18.0 | Apache License, V2.0 | https://pypi.org/project/google-auth/ | Google Cloud Platform | 2016 |
|
||||
| hgtools | 8.2.0 | MIT/X11 | https://pypi.org/project/hgtools/ | Jason R. Coombs | 2019 |
|
||||
| idna | 2.8 | BSD | https://pypi.org/project/idna/ | Kim Davies | 2013-2020 |
|
||||
| importlib-metadata | 1.7.0 | Apache License, V2.0 | https://pypi.org/project/importlib-metadata/ | Barry Warsaw | 2017-2019 |
|
||||
| ipaddress | 1.0.23 | Python License | https://pypi.org/project/ipaddress/ | Philipp Hagemeister | 2014 |
|
||||
| isodate | 0.6.0 | BSD | https://pypi.org/project/isodate/ | Gerhard Weis | 2009 |
|
||||
| jaraco.functools | 3.0.1 | MIT/X11 | https://pypi.org/project/jaraco.functools/ | Jason R. Coombs | 2020 |
|
||||
| jmespath | 0.10.0 | MIT/X11 | https://pypi.org/project/jmespath/ | James Saryerwinnie | 2013 |
|
||||
| jsondiff | 1.1.2 | MIT/X11 | https://pypi.org/project/jsondiff/ | Zoomer Analytics LLC | 2015 |
|
||||
| jsonpatch | 1.26 | BSD | https://pypi.org/project/jsonpatch/ | Stefan Kögl | 2011 |
|
||||
| jsonpickle | 1.4.1 | BSD | https://pypi.org/project/jsonpickle/ | David Aguilar | 2009-2018 |
|
||||
| jsonpointer | 2 | BSD | https://pypi.org/project/jsonpointer/ | Stefan Kögl | 2017 |
|
||||
| jsonschema | 3.2.0 | MIT/X11 | https://pypi.org/project/jsonschema/ | Julian Berman | 2013 |
|
||||
| junit-xml | 1.9 | MIT/X11 | https://pypi.org/project/junit-xml/ | Brian Beyer | 2013 |
|
||||
| junos-eznc | 2.4.0 | Apache License, V2.0 | https://pypi.org/project/junos-eznc/ | Jeremy Schulman, Nitin Kumar, Rick Sherman, Stacy Smith | 2018 |
|
||||
| jxmlease | 1.0.3 | MIT/X11 | https://pypi.org/project/jxmlease/ | Juniper Networks | 2015-2016 |
|
||||
| kazoo | 2.7.0 | Apache License, V2.0 | https://pypi.org/project/kazoo/ | Kazoo team | 2012 |
|
||||
| keyring | 5.7.1 | MIT/X11 | https://pypi.org/project/keyring/ | Kang Zhang | 2019 |
|
||||
| kubernetes | 3.0.0 | Apache License, V2.0 | https://pypi.org/project/kubernetes/ | Kubernetes | 2016 |
|
||||
| libnacl | 1.7.1 | Apache License, V2.0 | https://pypi.org/project/libnacl/ | Thomas S Hatch | 2014 |
|
||||
| lxml | 4.5.1 | BSD | https://pypi.org/project/lxml/ | lxml dev team | 2019 |
|
||||
| mock | 4.0.2 | BSD | https://pypi.org/project/mock/ | Testing Cabal | 2003-2013 |
|
||||
| more-itertools | 5.0.0 | MIT/X11 | https://pypi.org/project/more-itertools/ | Eric Rose | 2012 |
|
||||
| moto | 1.3.14 | Apache License, V2.0 | https://pypi.org/project/moto/ | Steve Pulec | 2004 |
|
||||
| natsort | 7.0.1 | MIT/X11 | https://pypi.org/project/natsort/ | Seth M. Morton | 2012-2020 |
|
||||
| ncclient | 0.6.7 | Apache License, V2.0 | https://pypi.org/project/ncclient/ | Shikhar Bhushan, Leonidas Poulopoulos, Ebben Aries, Einar Nilsen-Nygaard | 2004 |
|
||||
| netaddr | 0.8.0 | BSD | https://pypi.org/project/netaddr/ | Author: David P. D. Moss, Stefan Nordhausen et al | 2008 |
|
||||
| networkx | 2.4 | BSD | https://pypi.org/project/networkx/ | Aric Hagberg | 2004-2020 |
|
||||
| ntc-templates | 1.5.0 | Apache License, V2.0 | https://pypi.org/project/ntc-templates/ | Jason Edelman | 2015 |
|
||||
| oauthlib | 3.1.0 | BSD | https://pypi.org/project/oauthlib/ | The OAuthlib Community | 2019 |
|
||||
| oscrypto | 1.2.0 | MIT/X11 | https://pypi.org/project/oscrypto/ | wbond | 2015-2019 |
|
||||
| paramiko | 2.7.1 | GNU Lesser General Public License, V2.1 | https://pypi.org/project/paramiko/ | Jeff Forcier | 1999 |
|
||||
| passlib | 1.7.2 | BSD | https://pypi.org/project/passlib/ | Eli Collins | 2004 |
|
||||
| pathtools | 0.1.2 | MIT/X11 | https://pypi.org/project/pathtools/ | Yesudeep Mangalapilly | 2010 |
|
||||
| portend | 2.6 | MIT/X11 | https://pypi.org/project/portend/ | Jason R Coombs | 2018 |
|
||||
| psutil | 5.7.0 | BSD | https://pypi.org/project/psutil/ | Giampaolo Rodola | 2009 |
|
||||
| pyOpenSSL | 19.1.0 | Apache License, V2.0 | https://pypi.org/project/pyOpenSSL/ | The pyopenssl Developers | 2004 |
|
||||
| pyasn1 | 0.4.8 | BSD | https://pypi.org/project/pyasn1/ | Ilya Etingof | 2005-2020 |
|
||||
| pyasn1-modules | 0.2.8 | BSD | https://pypi.org/project/pyasn1-modules/ | Ilya Etingof | 2005-2020 |
|
||||
| pycparser | 2.20 | BSD | https://pypi.org/project/pycparser/ | Eli Bendersky | 2008-2017 |
|
||||
| pygit2 | 1.2.1 | GNU General Public License, V2.0 | https://pypi.org/project/pygit2/ | J. David Ibáñez | 2012 |
|
||||
| pyinotify | 0.9.6 | MIT/X11 | https://pypi.org/project/pyinotify/ | Sebastien Martini | 2010 |
|
||||
| pyparsing | 2.4.7 | MIT/X11 | https://pypi.org/project/pyparsing/ | Paul McGuire | 2018 |
|
||||
| pyrsistent | 0.16.0 | MIT/X11 | https://pypi.org/project/pyrsistent/ | Tobias Gustafsson | 2019 |
|
||||
| pyserial | 3.4 | BSD | https://pypi.org/project/pyserial/ | Chris Liechti | 2001-2016 |
|
||||
| python-dateutil | 2.8.1 | Apache License, V2.0 | https://pypi.org/project/python-dateutil/ | Gustavo Niemeyer | 2017 |
|
||||
| python-etcd | 0.4.5 | MIT/X11 | https://pypi.org/project/python-etcd/ | Jose Plana | 2015 |
|
||||
| python-gnupg | 0.4.6 | BSD | https://pypi.org/project/python-gnupg/ | Vinay Sajip | 2008-2019 |
|
||||
| python-jose[cryptography] | 3.2.0 | MIT/X11 | https://pypi.org/project/python-jose/ | Michael Davis | 2015 |
|
||||
| pytz | 2020.1 | MIT/X11 | https://pypi.org/project/pytz/ | Stuart Bishop | 2015 |
|
||||
| pyvmomi | 7 | Apache License, V2.0 | https://pypi.org/project/pyvmomi/ | VMware, Inc. | 2004 |
|
||||
| requests | 2.24.0 | Apache License, V2.0 | https://pypi.org/project/requests/ | Kenneth Reitz | 2004 |
|
||||
| requests-oauthlib | 1.3.0 | BSD | https://pypi.org/project/requests-oauthlib/ | Kenneth Reitz | 2014 |
|
||||
| responses | 0.10.15 | Apache License, V2.0 | https://pypi.org/project/responses/ | David Cramer | 2004 |
|
||||
| rfc3987 | 1.3.8 | GNU General Public License, V3.0 | https://pypi.org/project/rfc3987/ | Daniel Gerber | 2007 |
|
||||
| rsa | 4.6 | Apache License, V2.0 | https://pypi.org/project/rsa/ | Sybren A. Stuvel | 2011 |
|
||||
| s3transfer | 0.3.3 | Apache License, V2.0 | https://pypi.org/project/s3transfer/ | Amazon Web Services | 2004 |
|
||||
| scp | 0.13.2 | GNU Lesser General Public License, V2.1 | https://pypi.org/project/scp/ | James Bardin | 2013 |
|
||||
| setproctitle | 1.1.10 | BSD | https://pypi.org/project/setproctitle/ | Daniele Varrazzo | 2009-2020 |
|
||||
| setuptools-scm | 4.1.2 | MIT/X11 | https://pypi.org/project/setuptools-scm/ | Ronny Pfannschmidt | 2010 |
|
||||
| six | 1.15.0 | MIT/X11 | https://pypi.org/project/six/ | Benjamin Peterson | 2010-2020 |
|
||||
| smmap | 3.0.4 | BSD | https://pypi.org/project/smmap/ | Sebastian Thiel | 2010, 2011 |
|
||||
| sshpubkeys | 3.1.0 | BSD | https://pypi.org/project/sshpubkeys/ | Olli Jarva | 2014 |
|
||||
| strict-rfc3339 | 0.7 | GNU General Public License, V3.0 | https://pypi.org/project/strict-rfc3339/ | Daniel Richman, Adam Greig | 2007 |
|
||||
| tempora | 3.0.0 | MIT/X11 | https://pypi.org/project/tempora/ | Jason R. Coombs | 2020 |
|
||||
| textfsm | 1.1.0 | Apache License, V2.0 | https://pypi.org/project/textfsm/ | Google | 2004 |
|
||||
| timelib | 0.2.4 | BSD | https://pypi.org/project/timelib/ | Ralf Schmitt | 2009-2011 |
|
||||
| toml | 0.10.1 | MIT/X11 | https://pypi.org/project/toml/ | William Pearson | 2013-2019 |
|
||||
| transitions | 0.8.2 | MIT/X11 | https://pypi.org/project/transitions/ | Tal Yarkoni | 2014 - 2020 |
|
||||
| urllib3 | 1.25.9 | MIT/X11 | https://pypi.org/project/urllib3/ | Andrey Petrov | 2008-2020 |
|
||||
| vcert | 0.7.4 | ASL | https://pypi.org/project/vcert | Denis Subbotin | 2018 |
|
||||
| virtualenv | 20.0.25 | MIT | https://pypi.org/project/virtualenv | Bernat Gabor | 2020-202x |
|
||||
| watchdog | 0.10.3 | Apache License 2.0 | https://pypi.org/project/watchdog | Yesudeep Mangalapilly | 2012 |
|
||||
| websocket-client | 0.57.0 | BSD | https://pypi.org/project/websocket-client | liris | 2018 |
|
||||
| wrapt | 1.12.1 | BSD | https://pypi.org/project/wrapt | Graham Dumpleton | 2013-2019 |
|
||||
| xmltodict | 0.12.0 | MIT | https://pypi.org/project/xmltodict | Martin Blech | 2010 |
|
||||
| yamlordereddictloader | 0.4.0 | MIT License | https://pypi.org/project/yamlordereddictloader | François Ménabé | 2017 |
|
||||
| zc.lockfile | 2 | ZPL 2.1 | https://pypi.org/project/zc.lockfile | Zope Foundation | 2010 |
|
||||
| zipp | 3.1.0 | MIT | https://pypi.org/project/zipp | Jason R. Coombs | 2019 |
|
||||
|
|
1
changelog/63767.fixed.md
Normal file
1
changelog/63767.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
pkg.installed no longer reports failure when installing packages that are installed via the task manager
|
1
changelog/63996.fixed.md
Normal file
1
changelog/63996.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
[lxd] Fixed a bug in `container_create` which prevented devices which are not of type `disk` to be correctly created and added to the container when passed via the `devices` parameter.
|
2
changelog/64169.fixed.md
Normal file
2
changelog/64169.fixed.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
Call global logger when catching pip.list exceptions in states.pip.installed
|
||||
Rename global logger `log` to `logger` inside pip_state
|
|
@ -1,2 +1 @@
|
|||
Fixed issue in mac_user.enable_auto_login that caused the user's keychain
|
||||
to be reset at each boot
|
||||
Fixed issue in mac_user.enable_auto_login that caused the user's keychain to be reset at each boot
|
||||
|
|
1
changelog/64232.fixed.md
Normal file
1
changelog/64232.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Fixed x509_v2 `create_private_key`/`create_crl` unknown kwargs: __pub_fun...
|
1
changelog/64253.fixed.md
Normal file
1
changelog/64253.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Ensure we return an error when adding the key fails in the pkgrepo state for debian hosts.
|
1
changelog/64300.fixed.md
Normal file
1
changelog/64300.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Fix utf8 handling in 'pass' renderer
|
1
changelog/64305.fixed.md
Normal file
1
changelog/64305.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Upgade tornado to 6.3.2
|
1
changelog/64315.removed.md
Normal file
1
changelog/64315.removed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Fedora 36 support was removed because it reached EOL
|
1
changelog/64322.removed.md
Normal file
1
changelog/64322.removed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Removing Azure-Cloud modules from the code base.
|
1
changelog/64339.fixed.md
Normal file
1
changelog/64339.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Remove the `clr.AddReference`, it is causing an `Illegal characters in path` exception
|
1
changelog/64420.fixed.md
Normal file
1
changelog/64420.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Fix 'unable to unmount' failure to return False result instead of None
|
|
@ -1 +1 @@
|
|||
centosstream-9-x86_64: ami-044545f7a74d46acc
|
||||
centosstream-9-x86_64: ami-0bd92f4dca5d74017
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"almalinux-8-arm64": {
|
||||
"ami": "ami-0fc1e14bf9ff422aa",
|
||||
"ami": "ami-05c1d3dbdeeb94bc6",
|
||||
"ami_description": "CI Image of AlmaLinux 8 arm64",
|
||||
"ami_name": "salt-project/ci/almalinux/8/arm64/20230418.1731",
|
||||
"ami_name": "salt-project/ci/almalinux/8/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -10,9 +10,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"almalinux-8": {
|
||||
"ami": "ami-0bae4158c1f126271",
|
||||
"ami": "ami-0ec1cbc531f10105b",
|
||||
"ami_description": "CI Image of AlmaLinux 8 x86_64",
|
||||
"ami_name": "salt-project/ci/almalinux/8/x86_64/20230418.1732",
|
||||
"ami_name": "salt-project/ci/almalinux/8/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -20,9 +20,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"almalinux-9-arm64": {
|
||||
"ami": "ami-08f4d0fbf5d53c3ab",
|
||||
"ami": "ami-036c495af9dfcf852",
|
||||
"ami_description": "CI Image of AlmaLinux 9 arm64",
|
||||
"ami_name": "salt-project/ci/almalinux/9/arm64/20230418.1732",
|
||||
"ami_name": "salt-project/ci/almalinux/9/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -30,9 +30,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"almalinux-9": {
|
||||
"ami": "ami-00404c1cc5c5a08bd",
|
||||
"ami": "ami-0dbc7030666419671",
|
||||
"ami_description": "CI Image of AlmaLinux 9 x86_64",
|
||||
"ami_name": "salt-project/ci/almalinux/9/x86_64/20230418.1738",
|
||||
"ami_name": "salt-project/ci/almalinux/9/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -40,9 +40,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"amazonlinux-2-arm64": {
|
||||
"ami": "ami-05fbdb644d06c27b6",
|
||||
"ami": "ami-022232915c2a5f2d0",
|
||||
"ami_description": "CI Image of AmazonLinux 2 arm64",
|
||||
"ami_name": "salt-project/ci/amazonlinux/2/arm64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/amazonlinux/2/arm64/20230522.0621",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -50,9 +50,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"amazonlinux-2": {
|
||||
"ami": "ami-014171e6c30ec8387",
|
||||
"ami": "ami-0695f87baa5b5ce15",
|
||||
"ami_description": "CI Image of AmazonLinux 2 x86_64",
|
||||
"ami_name": "salt-project/ci/amazonlinux/2/x86_64/20230418.1718",
|
||||
"ami_name": "salt-project/ci/amazonlinux/2/x86_64/20230522.0620",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -60,9 +60,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"archlinux-lts": {
|
||||
"ami": "ami-00cff81ed2e2fb0f4",
|
||||
"ami": "ami-0f6424847f98afc04",
|
||||
"ami_description": "CI Image of ArchLinux lts x86_64",
|
||||
"ami_name": "salt-project/ci/archlinux/lts/x86_64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/archlinux/lts/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "false",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -70,9 +70,9 @@
|
|||
"ssh_username": "arch"
|
||||
},
|
||||
"centos-7-arm64": {
|
||||
"ami": "ami-051cef43c13fcc0c9",
|
||||
"ami": "ami-0908831c364e33a37",
|
||||
"ami_description": "CI Image of CentOS 7 arm64",
|
||||
"ami_name": "salt-project/ci/centos/7/arm64/20230418.1743",
|
||||
"ami_name": "salt-project/ci/centos/7/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -80,9 +80,9 @@
|
|||
"ssh_username": "centos"
|
||||
},
|
||||
"centos-7": {
|
||||
"ami": "ami-0dcc94e1bea829149",
|
||||
"ami": "ami-0ace33028ada62ddb",
|
||||
"ami_description": "CI Image of CentOS 7 x86_64",
|
||||
"ami_name": "salt-project/ci/centos/7/x86_64/20230418.1743",
|
||||
"ami_name": "salt-project/ci/centos/7/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -90,9 +90,9 @@
|
|||
"ssh_username": "centos"
|
||||
},
|
||||
"centosstream-8-arm64": {
|
||||
"ami": "ami-02783136c1080c782",
|
||||
"ami": "ami-0b30827dc592b2695",
|
||||
"ami_description": "CI Image of CentOSStream 8 arm64",
|
||||
"ami_name": "salt-project/ci/centosstream/8/arm64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/centosstream/8/arm64/20230522.0618",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -100,9 +100,9 @@
|
|||
"ssh_username": "centos"
|
||||
},
|
||||
"centosstream-8": {
|
||||
"ami": "ami-055e35dc7180defad",
|
||||
"ami": "ami-0929882a7e5cfba5f",
|
||||
"ami_description": "CI Image of CentOSStream 8 x86_64",
|
||||
"ami_name": "salt-project/ci/centosstream/8/x86_64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/centosstream/8/x86_64/20230522.0618",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -110,9 +110,9 @@
|
|||
"ssh_username": "centos"
|
||||
},
|
||||
"centosstream-9-arm64": {
|
||||
"ami": "ami-06fd13f7c7c702fc4",
|
||||
"ami": "ami-00700fb8821b8b8c7",
|
||||
"ami_description": "CI Image of CentOSStream 9 arm64",
|
||||
"ami_name": "salt-project/ci/centosstream/9/arm64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/centosstream/9/arm64/20230522.0619",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -120,9 +120,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"centosstream-9": {
|
||||
"ami": "ami-044545f7a74d46acc",
|
||||
"ami": "ami-0bd92f4dca5d74017",
|
||||
"ami_description": "CI Image of CentOSStream 9 x86_64",
|
||||
"ami_name": "salt-project/ci/centosstream/9/x86_64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/centosstream/9/x86_64/20230522.0619",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -130,9 +130,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"debian-10-arm64": {
|
||||
"ami": "ami-045aedc47e7ddfbf1",
|
||||
"ami": "ami-0f681fc9d5de0c3df",
|
||||
"ami_description": "CI Image of Debian 10 arm64",
|
||||
"ami_name": "salt-project/ci/debian/10/arm64/20230418.1739",
|
||||
"ami_name": "salt-project/ci/debian/10/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "false",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -140,9 +140,9 @@
|
|||
"ssh_username": "admin"
|
||||
},
|
||||
"debian-10": {
|
||||
"ami": "ami-0a205a9361210b291",
|
||||
"ami": "ami-0dcf5610590139238",
|
||||
"ami_description": "CI Image of Debian 10 x86_64",
|
||||
"ami_name": "salt-project/ci/debian/10/x86_64/20230418.1739",
|
||||
"ami_name": "salt-project/ci/debian/10/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -150,9 +150,9 @@
|
|||
"ssh_username": "admin"
|
||||
},
|
||||
"debian-11-arm64": {
|
||||
"ami": "ami-0be71acc27a8efa60",
|
||||
"ami": "ami-062b4bf11a864825c",
|
||||
"ami_description": "CI Image of Debian 11 arm64",
|
||||
"ami_name": "salt-project/ci/debian/11/arm64/20230418.1739",
|
||||
"ami_name": "salt-project/ci/debian/11/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "false",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -160,39 +160,19 @@
|
|||
"ssh_username": "admin"
|
||||
},
|
||||
"debian-11": {
|
||||
"ami": "ami-0ad354da27b34289b",
|
||||
"ami": "ami-0f400e5fa6806bbca",
|
||||
"ami_description": "CI Image of Debian 11 x86_64",
|
||||
"ami_name": "salt-project/ci/debian/11/x86_64/20230418.1742",
|
||||
"ami_name": "salt-project/ci/debian/11/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
"is_windows": "false",
|
||||
"ssh_username": "admin"
|
||||
},
|
||||
"fedora-36-arm64": {
|
||||
"ami": "ami-00c0ab2829c887922",
|
||||
"ami_description": "CI Image of Fedora 36 arm64",
|
||||
"ami_name": "salt-project/ci/fedora/36/arm64/20230418.1726",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
"is_windows": "false",
|
||||
"ssh_username": "fedora"
|
||||
},
|
||||
"fedora-36": {
|
||||
"ami": "ami-0185a1189bff7c771",
|
||||
"ami_description": "CI Image of Fedora 36 x86_64",
|
||||
"ami_name": "salt-project/ci/fedora/36/x86_64/20230418.1726",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
"is_windows": "false",
|
||||
"ssh_username": "fedora"
|
||||
},
|
||||
"fedora-37-arm64": {
|
||||
"ami": "ami-075c52fda843ace1b",
|
||||
"ami": "ami-0d71d6f2b0869842f",
|
||||
"ami_description": "CI Image of Fedora 37 arm64",
|
||||
"ami_name": "salt-project/ci/fedora/37/arm64/20230418.1726",
|
||||
"ami_name": "salt-project/ci/fedora/37/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -200,9 +180,9 @@
|
|||
"ssh_username": "fedora"
|
||||
},
|
||||
"fedora-37": {
|
||||
"ami": "ami-099a68403d6c65733",
|
||||
"ami": "ami-026f494dd4b9d40e8",
|
||||
"ami_description": "CI Image of Fedora 37 x86_64",
|
||||
"ami_name": "salt-project/ci/fedora/37/x86_64/20230418.1726",
|
||||
"ami_name": "salt-project/ci/fedora/37/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -210,9 +190,9 @@
|
|||
"ssh_username": "fedora"
|
||||
},
|
||||
"fedora-38-arm64": {
|
||||
"ami": "ami-02fa22d081a9be052",
|
||||
"ami": "ami-01ba8a7951daf68fb",
|
||||
"ami_description": "CI Image of Fedora 38 arm64",
|
||||
"ami_name": "salt-project/ci/fedora/38/arm64/20230418.1727",
|
||||
"ami_name": "salt-project/ci/fedora/38/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -220,9 +200,9 @@
|
|||
"ssh_username": "fedora"
|
||||
},
|
||||
"fedora-38": {
|
||||
"ami": "ami-0a8d949d0bb15bbc0",
|
||||
"ami": "ami-0699dbe70b69e96aa",
|
||||
"ami_description": "CI Image of Fedora 38 x86_64",
|
||||
"ami_name": "salt-project/ci/fedora/38/x86_64/20230418.1727",
|
||||
"ami_name": "salt-project/ci/fedora/38/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -230,9 +210,9 @@
|
|||
"ssh_username": "fedora"
|
||||
},
|
||||
"opensuse-15": {
|
||||
"ami": "ami-089ac311f924f131f",
|
||||
"ami": "ami-0c594da84f6e1cd96",
|
||||
"ami_description": "CI Image of Opensuse 15 x86_64",
|
||||
"ami_name": "salt-project/ci/opensuse/15/x86_64/20230418.1744",
|
||||
"ami_name": "salt-project/ci/opensuse/15/x86_64/20230522.0619",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -240,9 +220,9 @@
|
|||
"ssh_username": "ec2-user"
|
||||
},
|
||||
"photonos-3": {
|
||||
"ami": "ami-03ce6db789f90957b",
|
||||
"ami": "ami-0db2ebdb9bc3400ef",
|
||||
"ami_description": "CI Image of PhotonOS 3 x86_64",
|
||||
"ami_name": "salt-project/ci/photonos/3/x86_64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/photonos/3/x86_64/20230522.0617",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -250,9 +230,9 @@
|
|||
"ssh_username": "root"
|
||||
},
|
||||
"photonos-4": {
|
||||
"ami": "ami-0ef9996c398479d65",
|
||||
"ami": "ami-08a6b6bbf6779a538",
|
||||
"ami_description": "CI Image of PhotonOS 4 x86_64",
|
||||
"ami_name": "salt-project/ci/photonos/4/x86_64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/photonos/4/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -260,9 +240,9 @@
|
|||
"ssh_username": "root"
|
||||
},
|
||||
"ubuntu-20.04-arm64": {
|
||||
"ami": "ami-0c4d21e0772489c0d",
|
||||
"ami": "ami-0dccc0de7a38cca90",
|
||||
"ami_description": "CI Image of Ubuntu 20.04 arm64",
|
||||
"ami_name": "salt-project/ci/ubuntu/20.04/arm64/20230418.1728",
|
||||
"ami_name": "salt-project/ci/ubuntu/20.04/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -270,9 +250,9 @@
|
|||
"ssh_username": "ubuntu"
|
||||
},
|
||||
"ubuntu-20.04": {
|
||||
"ami": "ami-09ae6200865b29b9b",
|
||||
"ami": "ami-05e51f893a626b579",
|
||||
"ami_description": "CI Image of Ubuntu 20.04 x86_64",
|
||||
"ami_name": "salt-project/ci/ubuntu/20.04/x86_64/20230418.1728",
|
||||
"ami_name": "salt-project/ci/ubuntu/20.04/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -280,9 +260,9 @@
|
|||
"ssh_username": "ubuntu"
|
||||
},
|
||||
"ubuntu-22.04-arm64": {
|
||||
"ami": "ami-024fe5d0b838f88f7",
|
||||
"ami": "ami-0c958272da6c09ca6",
|
||||
"ami_description": "CI Image of Ubuntu 22.04 arm64",
|
||||
"ami_name": "salt-project/ci/ubuntu/22.04/arm64/20230418.1731",
|
||||
"ami_name": "salt-project/ci/ubuntu/22.04/arm64/20230522.0606",
|
||||
"arch": "arm64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "m6g.large",
|
||||
|
@ -290,9 +270,9 @@
|
|||
"ssh_username": "ubuntu"
|
||||
},
|
||||
"ubuntu-22.04": {
|
||||
"ami": "ami-0d83f00f084d91451",
|
||||
"ami": "ami-09e45f31ccafcdcec",
|
||||
"ami_description": "CI Image of Ubuntu 22.04 x86_64",
|
||||
"ami_name": "salt-project/ci/ubuntu/22.04/x86_64/20230418.1732",
|
||||
"ami_name": "salt-project/ci/ubuntu/22.04/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.large",
|
||||
|
@ -300,9 +280,9 @@
|
|||
"ssh_username": "ubuntu"
|
||||
},
|
||||
"windows-2016": {
|
||||
"ami": "ami-078d9229cfaf24d1b",
|
||||
"ami": "ami-099db55543619f54a",
|
||||
"ami_description": "CI Image of Windows 2016 x86_64",
|
||||
"ami_name": "salt-project/ci/windows/2016/x86_64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/windows/2016/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.xlarge",
|
||||
|
@ -310,9 +290,9 @@
|
|||
"ssh_username": "Administrator"
|
||||
},
|
||||
"windows-2019": {
|
||||
"ami": "ami-0ab20823965e1aa7a",
|
||||
"ami": "ami-0860ee5bc9ee93e13",
|
||||
"ami_description": "CI Image of Windows 2019 x86_64",
|
||||
"ami_name": "salt-project/ci/windows/2019/x86_64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/windows/2019/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.xlarge",
|
||||
|
@ -320,9 +300,9 @@
|
|||
"ssh_username": "Administrator"
|
||||
},
|
||||
"windows-2022": {
|
||||
"ami": "ami-054c4cf04c0f31eb1",
|
||||
"ami": "ami-032e3abce2aa98da7",
|
||||
"ami_description": "CI Image of Windows 2022 x86_64",
|
||||
"ami_name": "salt-project/ci/windows/2022/x86_64/20230418.1717",
|
||||
"ami_name": "salt-project/ci/windows/2022/x86_64/20230522.0606",
|
||||
"arch": "x86_64",
|
||||
"cloudwatch-agent-available": "true",
|
||||
"instance_type": "t3a.xlarge",
|
||||
|
|
|
@ -2,3 +2,5 @@ python_version_linux: "3.10.11"
|
|||
python_version_macos: "3.10.11"
|
||||
python_version_windows: "3.10.11"
|
||||
relenv_version: "0.12.3"
|
||||
release-branches:
|
||||
- "3006.x"
|
||||
|
|
10
doc/_themes/saltstack2/layout.html
vendored
10
doc/_themes/saltstack2/layout.html
vendored
|
@ -152,7 +152,7 @@
|
|||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a href="http://saltstack.com/" target="_blank"><img src="{{ pathto('_static/images/SaltStack_white.svg', 1) }}" class="nolightbox" height="40px" width="170px"></a>
|
||||
<a href="https://saltproject.io/" target="_blank"><img src="https://gitlab.com/saltstack/open/salt-branding-guide/-/raw/master/logos/SaltProject_altlogo_teal.png" class="nolightbox" height="44.5px" width="125px"></a>
|
||||
</div>
|
||||
<!-- Collect the nav links, forms, and other content for toggling -->
|
||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||
|
@ -263,17 +263,17 @@
|
|||
<p>You are viewing preview docs for the next major release, {{ next_release }}. Switch to docs for the latest stable release, <a data-container="body" data-toggle="tooltip" data-placement="bottom" title="Docs for the latest stable release" href="/en/latest/">{{ latest_release }}</a>.</p>
|
||||
{% endif %}
|
||||
<br>
|
||||
<p><a href="http://saltstack.com">saltstack.com</a></p>
|
||||
<p><a href="https://saltproject.io/">saltproject.io</a></p>
|
||||
|
||||
<div class="footer">
|
||||
<p>© {{ copyright }} SaltStack. All Rights Reserved, SaltStack Inc. | <a href="http://saltstack.com/privacy-policy" target="_blank">Privacy Policy</a></p>
|
||||
<p>© {{ copyright }} VMware, Inc. | <a href="https://www.vmware.com/help/privacy.html" target="_blank">Privacy Policy</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<!--
|
||||
<a href="https://saltstack.com/saltstack-enterprise/" target="_blank"><img class="nolightbox footer-banner center" src="{{ pathto('_static/images/enterprise_ad.jpg', 1) }}"/></a>
|
||||
-->
|
||||
<a href="https://saltconf.com/ad" target="_blank"><img class="nolightbox footer-banner center" src="https://gitlab.com/saltstack/open/salt-branding-guide/-/raw/master/misc/banners/try_salt_now.png"/></a>
|
||||
<a href="https://docs.saltproject.io/salt/user-guide/en/latest/index.html" target="_blank"><img class="nolightbox footer-banner center" src="https://gitlab.com/saltstack/open/salt-branding-guide/-/raw/master/misc/banners/try_salt_now.png"/></a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
@ -295,7 +295,7 @@
|
|||
{% else %}
|
||||
<a href="http://saltstack.com/support" target="_blank"><img class="nolightbox sidebar-banner center" src="{{ pathto('_static/images/banner-support.png', 1) }}"/></a>
|
||||
{% endif %} #}-->
|
||||
<a href="https://saltconf.com/menu-ad" target="_blank"><img class="nolightbox sidebar-banner center" src="https://gitlab.com/saltstack/open/salt-branding-guide/-/raw/master/misc/banners/saltconf.png"/></a>
|
||||
<a href="https://saltproject.io" target="_blank"><img class="nolightbox sidebar-banner center" src="https://gitlab.com/saltstack/open/salt-branding-guide/-/raw/master/logos/SaltProject_altlogo_teal.png"/></a>
|
||||
|
||||
|
||||
{% if build_type=="next" %}
|
||||
|
|
|
@ -321,7 +321,6 @@ linkcheck_ignore = [
|
|||
r"https://salt-cloud.readthedocs.io",
|
||||
r"https://salt.readthedocs.io",
|
||||
r"http://www.pip-installer.org/",
|
||||
r"http://www.windowsazure.com/",
|
||||
r"https://github.com/watching",
|
||||
r"dash-feed://",
|
||||
r"https://github.com/saltstack/salt/",
|
||||
|
|
|
@ -11,7 +11,6 @@ cloud modules
|
|||
:template: autosummary.rst.tmpl
|
||||
|
||||
aliyun
|
||||
azurearm
|
||||
clc
|
||||
cloudstack
|
||||
digitalocean
|
||||
|
@ -24,7 +23,6 @@ cloud modules
|
|||
libvirt
|
||||
linode
|
||||
lxc
|
||||
msazure
|
||||
oneandone
|
||||
opennebula
|
||||
openstack
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
salt.cloud.clouds.azurearm
|
||||
==========================
|
||||
|
||||
.. automodule:: salt.cloud.clouds.azurearm
|
||||
:members:
|
|
@ -1,5 +0,0 @@
|
|||
salt.cloud.clouds.msazure
|
||||
=========================
|
||||
|
||||
.. automodule:: salt.cloud.clouds.msazure
|
||||
:members:
|
|
@ -4046,29 +4046,6 @@ This option defines the update interval (in seconds) for :ref:`MinionFS
|
|||
|
||||
minionfs_update_interval: 120
|
||||
|
||||
azurefs: Azure File Server Backend
|
||||
----------------------------------
|
||||
|
||||
.. versionadded:: 2015.8.0
|
||||
|
||||
See the :mod:`azurefs documentation <salt.fileserver.azurefs>` for usage
|
||||
examples.
|
||||
|
||||
.. conf_master:: azurefs_update_interval
|
||||
|
||||
``azurefs_update_interval``
|
||||
***************************
|
||||
|
||||
.. versionadded:: 2018.3.0
|
||||
|
||||
Default: ``60``
|
||||
|
||||
This option defines the update interval (in seconds) for azurefs.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
azurefs_update_interval: 120
|
||||
|
||||
s3fs: S3 File Server Backend
|
||||
----------------------------
|
||||
|
||||
|
@ -5369,9 +5346,9 @@ and pkg modules.
|
|||
.. code-block:: yaml
|
||||
|
||||
peer:
|
||||
foo.example.com:
|
||||
- test.*
|
||||
- pkg.*
|
||||
foo\.example\.com:
|
||||
- test\..*
|
||||
- pkg\..*
|
||||
|
||||
This will allow all minions to execute all commands:
|
||||
|
||||
|
@ -5384,16 +5361,25 @@ This will allow all minions to execute all commands:
|
|||
This is not recommended, since it would allow anyone who gets root on any
|
||||
single minion to instantly have root on all of the minions!
|
||||
|
||||
By adding an additional layer you can limit the target hosts in addition to the
|
||||
accessible commands:
|
||||
It is also possible to limit target hosts with the :term:`Compound Matcher`.
|
||||
You can achieve this by adding another layer in between the source and the
|
||||
allowed functions:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
peer:
|
||||
foo.example.com:
|
||||
'db*':
|
||||
- test.*
|
||||
- pkg.*
|
||||
'.*\.example\.com':
|
||||
- 'G@role:db':
|
||||
- test\..*
|
||||
- pkg\..*
|
||||
|
||||
.. note::
|
||||
|
||||
Notice that the source hosts are matched by a regular expression
|
||||
on their minion ID, while target hosts can be matched by any of
|
||||
the :ref:`available matchers <targeting-compound>`.
|
||||
|
||||
Note that globbing and regex matching on pillar values is not supported. You can only match exact values.
|
||||
|
||||
.. conf_master:: peer_run
|
||||
|
||||
|
|
|
@ -2035,7 +2035,6 @@ Valid options:
|
|||
Top File Settings
|
||||
=================
|
||||
|
||||
These parameters only have an effect if running a masterless minion.
|
||||
|
||||
.. conf_minion:: state_top
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@ fileserver modules
|
|||
:toctree:
|
||||
:template: autosummary.rst.tmpl
|
||||
|
||||
azurefs
|
||||
gitfs
|
||||
hgfs
|
||||
minionfs
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
salt.fileserver.azurefs
|
||||
=======================
|
||||
|
||||
.. automodule:: salt.fileserver.azurefs
|
|
@ -25,7 +25,6 @@ grains modules
|
|||
mdadm
|
||||
mdata
|
||||
metadata
|
||||
metadata_azure
|
||||
metadata_gce
|
||||
minion_process
|
||||
napalm
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
salt.grains.metadata_azure
|
||||
==========================
|
||||
|
||||
.. automodule:: salt.grains.metadata_azure
|
||||
:members:
|
|
@ -42,10 +42,6 @@ execution modules
|
|||
at_solaris
|
||||
augeas_cfg
|
||||
aws_sqs
|
||||
azurearm_compute
|
||||
azurearm_dns
|
||||
azurearm_network
|
||||
azurearm_resource
|
||||
bamboohr
|
||||
baredoc
|
||||
bcache
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
salt.modules.azurearm_compute
|
||||
=============================
|
||||
|
||||
.. automodule:: salt.modules.azurearm_compute
|
||||
:members:
|
|
@ -1,6 +0,0 @@
|
|||
salt.modules.azurearm_dns
|
||||
=========================
|
||||
|
||||
.. automodule:: salt.modules.azurearm_dns
|
||||
:members:
|
||||
:undoc-members:
|
|
@ -1,5 +0,0 @@
|
|||
salt.modules.azurearm_network
|
||||
=============================
|
||||
|
||||
.. automodule:: salt.modules.azurearm_network
|
||||
:members:
|
|
@ -1,5 +0,0 @@
|
|||
salt.modules.azurearm_resource
|
||||
==============================
|
||||
|
||||
.. automodule:: salt.modules.azurearm_resource
|
||||
:members:
|
|
@ -38,16 +38,16 @@ only recommended for very secure environments.
|
|||
.*:
|
||||
- .*
|
||||
|
||||
This configuration will allow minions with IDs ending in example.com access
|
||||
This configuration allows minions with IDs ending in ``.example.com`` access
|
||||
to the test, ps, and pkg module functions.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
peer:
|
||||
.*example.com:
|
||||
- test.*
|
||||
- ps.*
|
||||
- pkg.*
|
||||
.*\.example.com:
|
||||
- test\..*
|
||||
- ps\..*
|
||||
- pkg\..*
|
||||
|
||||
|
||||
The configuration logic is simple, a regular expression is passed for matching
|
||||
|
@ -58,17 +58,38 @@ allow minions ending with foo.org access to the publisher.
|
|||
.. code-block:: yaml
|
||||
|
||||
peer:
|
||||
.*example.com:
|
||||
- test.*
|
||||
- ps.*
|
||||
- pkg.*
|
||||
.*foo.org:
|
||||
- test.*
|
||||
- ps.*
|
||||
- pkg.*
|
||||
.*\.example.com:
|
||||
- test\..*
|
||||
- ps\..*
|
||||
- pkg\..*
|
||||
.*\.foo.org:
|
||||
- test\..*
|
||||
- ps\..*
|
||||
- pkg\..*
|
||||
|
||||
.. note::
|
||||
Functions are matched using regular expressions.
|
||||
Functions are matched using regular expressions as well.
|
||||
|
||||
It is also possible to limit target hosts with the :term:`Compound Matcher`.
|
||||
You can achieve this by adding another layer in between the source and the
|
||||
allowed functions:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
peer:
|
||||
'.*\.example\.com':
|
||||
- 'G@role:db':
|
||||
- test\..*
|
||||
- pkg\..*
|
||||
|
||||
.. note::
|
||||
|
||||
Notice that the source hosts are matched by a regular expression
|
||||
on their minion ID, while target hosts can be matched by any of
|
||||
the :ref:`available matchers <targeting-compound>`.
|
||||
|
||||
Note that globbing and regex matching on pillar values is not supported. You can only match exact values.
|
||||
|
||||
|
||||
Peer Runner Communication
|
||||
=========================
|
||||
|
|
|
@ -10,7 +10,6 @@ pillar modules
|
|||
:toctree:
|
||||
:template: autosummary.rst.tmpl
|
||||
|
||||
azureblob
|
||||
cmd_json
|
||||
cmd_yaml
|
||||
cmd_yamlex
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
salt.pillar.azureblob
|
||||
=====================
|
||||
|
||||
.. automodule:: salt.pillar.azureblob
|
||||
:members:
|
|
@ -95,11 +95,8 @@ Using Custom Returner Modules
|
|||
Place custom returners in a ``_returners/`` directory within the
|
||||
:conf_master:`file_roots` specified by the master config file.
|
||||
|
||||
Custom returners are distributed when any of the following are called:
|
||||
|
||||
- :mod:`state.apply <salt.modules.state.apply_>`
|
||||
- :mod:`saltutil.sync_returners <salt.modules.saltutil.sync_returners>`
|
||||
- :mod:`saltutil.sync_all <salt.modules.saltutil.sync_all>`
|
||||
Like all custom modules, these must be synced to the relevant master or minion
|
||||
before they can be used. See :ref:`modular-systems` for details.
|
||||
|
||||
Any custom returners which have been synced to a minion that are named the
|
||||
same as one of Salt's default set of returners will take the place of the
|
||||
|
|
|
@ -24,10 +24,6 @@ state modules
|
|||
at
|
||||
augeas
|
||||
aws_sqs
|
||||
azurearm_compute
|
||||
azurearm_dns
|
||||
azurearm_network
|
||||
azurearm_resource
|
||||
beacon
|
||||
bigip
|
||||
blockdev
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
salt.states.azurearm_compute
|
||||
============================
|
||||
|
||||
.. automodule:: salt.states.azurearm_compute
|
||||
:members:
|
|
@ -1,5 +0,0 @@
|
|||
salt.states.azurearm_dns
|
||||
========================
|
||||
|
||||
.. automodule:: salt.states.azurearm_dns
|
||||
:members:
|
|
@ -1,5 +0,0 @@
|
|||
salt.states.azurearm_network
|
||||
============================
|
||||
|
||||
.. automodule:: salt.states.azurearm_network
|
||||
:members:
|
|
@ -1,5 +0,0 @@
|
|||
salt.states.azurearm_resource
|
||||
=============================
|
||||
|
||||
.. automodule:: salt.states.azurearm_resource
|
||||
:members:
|
|
@ -426,7 +426,6 @@ mongodb
|
|||
monit
|
||||
moosefs
|
||||
mountpoint
|
||||
msazure
|
||||
msc
|
||||
msdos
|
||||
msg
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,486 +0,0 @@
|
|||
==============================
|
||||
Getting Started With Azure ARM
|
||||
==============================
|
||||
|
||||
.. versionadded:: 2016.11.0
|
||||
|
||||
.. warning::
|
||||
|
||||
This cloud provider will be removed from Salt in version 3007 in favor of
|
||||
the `saltext.azurerm Salt Extension
|
||||
<https://github.com/salt-extensions/saltext-azurerm>`_
|
||||
|
||||
Azure is a cloud service by Microsoft providing virtual machines, SQL services,
|
||||
media services, and more. Azure ARM (aka, the Azure Resource Manager) is a next
|
||||
generation version of the Azure portal and API. This document describes how to
|
||||
use Salt Cloud to create a virtual machine on Azure ARM, with Salt installed.
|
||||
|
||||
More information about Azure is located at `http://www.windowsazure.com/
|
||||
<http://www.windowsazure.com/>`_.
|
||||
|
||||
|
||||
Dependencies
|
||||
============
|
||||
* `azure <https://pypi.org/project/azure>`_ >= 2.0.0rc6
|
||||
* `azure-common <https://pypi.org/project/azure-common>`_ >= 1.1.4
|
||||
* `azure-mgmt <https://pypi.org/project/azure-mgmt>`_ >= 0.30.0rc6
|
||||
* `azure-mgmt-compute <https://pypi.org/project/azure-mgmt-compute>`_ >= 0.33.0
|
||||
* `azure-mgmt-network <https://pypi.org/project/azure-mgmt-network>`_ >= 0.30.0rc6
|
||||
* `azure-mgmt-resource <https://pypi.org/project/azure-mgmt-resource>`_ >= 0.30.0
|
||||
* `azure-mgmt-storage <https://pypi.org/project/azure-mgmt-storage>`_ >= 0.30.0rc6
|
||||
* `azure-mgmt-web <https://pypi.org/project/azure-mgmt-web>`_ >= 0.30.0rc6
|
||||
* `azure-storage <https://pypi.org/project/azure-storage>`_ >= 0.32.0
|
||||
* `msrestazure <https://pypi.org/project/msrestazure/>`_ >= 0.4.21
|
||||
* A Microsoft Azure account
|
||||
* `Salt <https://github.com/saltstack/salt>`_
|
||||
|
||||
|
||||
Installation Tips
|
||||
=================
|
||||
Because the ``azure`` library requires the ``cryptography`` library, which is
|
||||
compiled on-the-fly by ``pip``, you may need to install the development tools
|
||||
for your operating system.
|
||||
|
||||
Before you install ``azure`` with ``pip``, you should make sure that the
|
||||
required libraries are installed.
|
||||
|
||||
Debian
|
||||
------
|
||||
For Debian and Ubuntu, the following command will ensure that the required
|
||||
dependencies are installed:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
sudo apt-get install build-essential libssl-dev libffi-dev python-dev
|
||||
|
||||
Red Hat
|
||||
-------
|
||||
For Fedora and RHEL-derivatives, the following command will ensure that the
|
||||
required dependencies are installed:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
sudo yum install gcc libffi-devel python-devel openssl-devel
|
||||
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
Set up the provider config at ``/etc/salt/cloud.providers.d/azurearm.conf``:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
# Note: This example is for /etc/salt/cloud.providers.d/azurearm.conf
|
||||
|
||||
my-azurearm-config:
|
||||
driver: azurearm
|
||||
master: salt.example.com
|
||||
subscription_id: 01234567-890a-bcde-f012-34567890abdc
|
||||
|
||||
# https://apps.dev.microsoft.com/#/appList
|
||||
username: <username>@<subdomain>.onmicrosoft.com
|
||||
password: verybadpass
|
||||
location: westus
|
||||
resource_group: my_rg
|
||||
|
||||
# Optional
|
||||
network_resource_group: my_net_rg
|
||||
cleanup_disks: True
|
||||
cleanup_vhds: True
|
||||
cleanup_data_disks: True
|
||||
cleanup_interfaces: True
|
||||
custom_data: 'This is custom data'
|
||||
expire_publisher_cache: 604800 # 7 days
|
||||
expire_offer_cache: 518400 # 6 days
|
||||
expire_sku_cache: 432000 # 5 days
|
||||
expire_version_cache: 345600 # 4 days
|
||||
expire_group_cache: 14400 # 4 hours
|
||||
expire_interface_cache: 3600 # 1 hour
|
||||
expire_network_cache: 3600 # 1 hour
|
||||
|
||||
Cloud Profiles
|
||||
==============
|
||||
Set up an initial profile at ``/etc/salt/cloud.profiles``:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
azure-ubuntu-pass:
|
||||
provider: my-azure-config
|
||||
image: Canonical|UbuntuServer|14.04.5-LTS|14.04.201612050
|
||||
size: Standard_D1_v2
|
||||
location: eastus
|
||||
ssh_username: azureuser
|
||||
ssh_password: verybadpass
|
||||
|
||||
azure-ubuntu-key:
|
||||
provider: my-azure-config
|
||||
image: Canonical|UbuntuServer|14.04.5-LTS|14.04.201612050
|
||||
size: Standard_D1_v2
|
||||
location: eastus
|
||||
ssh_username: azureuser
|
||||
ssh_publickeyfile: /path/to/ssh_public_key.pub
|
||||
|
||||
azure-win2012:
|
||||
provider: my-azure-config
|
||||
image: MicrosoftWindowsServer|WindowsServer|2012-R2-Datacenter|latest
|
||||
size: Standard_D1_v2
|
||||
location: westus
|
||||
win_username: azureuser
|
||||
win_password: verybadpass
|
||||
|
||||
These options are described in more detail below. Once configured, the profile
|
||||
can be realized with a salt command:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
salt-cloud -p azure-ubuntu newinstance
|
||||
|
||||
This will create an salt minion instance named ``newinstance`` in Azure. If
|
||||
the command was executed on the salt-master, its Salt key will automatically
|
||||
be signed on the master.
|
||||
|
||||
Once the instance has been created with salt-minion installed, connectivity to
|
||||
it can be verified with Salt:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
salt newinstance test.version
|
||||
|
||||
|
||||
Profile Options
|
||||
===============
|
||||
The following options are currently available for Azure ARM.
|
||||
|
||||
provider
|
||||
--------
|
||||
The name of the provider as configured in
|
||||
`/etc/salt/cloud.providers.d/azure.conf`.
|
||||
|
||||
image
|
||||
-----
|
||||
Required. The name of the image to use to create a VM. Available images can be
|
||||
viewed using the following command:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
salt-cloud --list-images my-azure-config
|
||||
|
||||
As you will see in ``--list-images``, image names are comprised of the following
|
||||
fields, separated by the pipe (``|``) character:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
publisher: For example, Canonical or MicrosoftWindowsServer
|
||||
offer: For example, UbuntuServer or WindowsServer
|
||||
sku: Such as 14.04.5-LTS or 2012-R2-Datacenter
|
||||
version: Such as 14.04.201612050 or latest
|
||||
|
||||
It is possible to specify the URL or resource ID path of a custom image that you
|
||||
have access to, such as:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
https://<mystorage>.blob.core.windows.net/system/Microsoft.Compute/Images/<mystorage>/template-osDisk.01234567-890a-bcdef0123-4567890abcde.vhd
|
||||
|
||||
or:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
/subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/myRG/providers/Microsoft.Compute/images/myImage
|
||||
|
||||
size
|
||||
----
|
||||
Required. The name of the size to use to create a VM. Available sizes can be
|
||||
viewed using the following command:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
salt-cloud --list-sizes my-azure-config
|
||||
|
||||
location
|
||||
--------
|
||||
Required. The name of the location to create a VM in. Available locations can
|
||||
be viewed using the following command:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
salt-cloud --list-locations my-azure-config
|
||||
|
||||
ssh_username
|
||||
------------
|
||||
Required for Linux. The admin user to add on the instance. It is also used to log
|
||||
into the newly-created VM to install Salt.
|
||||
|
||||
ssh_keyfile
|
||||
-----------
|
||||
Required if using SSH key authentication. The path on the Salt master to the SSH private
|
||||
key used during the minion bootstrap process.
|
||||
|
||||
ssh_publickeyfile
|
||||
-----------------
|
||||
Use either ``ssh_publickeyfile`` or ``ssh_password``. The path on the Salt master to the
|
||||
SSH public key which will be pushed to the Linux VM.
|
||||
|
||||
ssh_password
|
||||
------------
|
||||
Use either ``ssh_publickeyfile`` or ``ssh_password``. The password for the admin user on
|
||||
the newly-created Linux virtual machine.
|
||||
|
||||
win_username
|
||||
------------
|
||||
Required for Windows. The user to use to log into the newly-created Windows VM
|
||||
to install Salt.
|
||||
|
||||
win_password
|
||||
------------
|
||||
Required for Windows. The password to use to log into the newly-created Windows
|
||||
VM to install Salt.
|
||||
|
||||
win_installer
|
||||
-------------
|
||||
Required for Windows. The path to the Salt installer to be uploaded.
|
||||
|
||||
resource_group
|
||||
--------------
|
||||
Required. The resource group that all VM resources (VM, network interfaces,
|
||||
etc) will be created in.
|
||||
|
||||
network_resource_group
|
||||
----------------------
|
||||
Optional. If specified, then the VM will be connected to the virtual network
|
||||
in this resource group, rather than the parent resource group of the instance.
|
||||
The VM interfaces and IPs will remain in the configured ``resource_group`` with
|
||||
the VM.
|
||||
|
||||
network
|
||||
-------
|
||||
Required. The virtual network that the VM will be spun up in.
|
||||
|
||||
subnet
|
||||
------
|
||||
Optional. The subnet inside the virtual network that the VM will be spun up in.
|
||||
Default is ``default``.
|
||||
|
||||
allocate_public_ip
|
||||
------------------
|
||||
Optional. Default is ``False``. If set to ``True``, a public IP will
|
||||
be created and assigned to the VM.
|
||||
|
||||
load_balancer
|
||||
-------------
|
||||
Optional. The load-balancer for the VM's network interface to join. If
|
||||
specified the backend_pool option need to be set.
|
||||
|
||||
backend_pool
|
||||
------------
|
||||
Optional. Required if the load_balancer option is set. The load-balancer's
|
||||
Backend Pool the VM's network interface will join.
|
||||
|
||||
iface_name
|
||||
----------
|
||||
Optional. The name to apply to the VM's network interface. If not supplied, the
|
||||
value will be set to ``<VM name>-iface0``.
|
||||
|
||||
dns_servers
|
||||
-----------
|
||||
Optional. A **list** of the DNS servers to configure for the network interface
|
||||
(will be set on the VM by the DHCP of the VNET).
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
my-azurearm-profile:
|
||||
provider: azurearm-provider
|
||||
network: mynetwork
|
||||
dns_servers:
|
||||
- 10.1.1.4
|
||||
- 10.1.1.5
|
||||
|
||||
availability_set
|
||||
----------------
|
||||
Optional. If set, the VM will be added to the specified availability set.
|
||||
|
||||
volumes
|
||||
-------
|
||||
|
||||
Optional. A list of dictionaries describing data disks to attach to the
|
||||
instance can be specified using this setting. The data disk dictionaries are
|
||||
passed entirely to the `Azure DataDisk object
|
||||
<https://docs.microsoft.com/en-us/python/api/azure.mgmt.compute.v2017_12_01.models.datadisk?view=azure-python>`_,
|
||||
so ad-hoc options can be handled as long as they are valid properties of the
|
||||
object.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
volumes:
|
||||
- disk_size_gb: 50
|
||||
caching: ReadWrite
|
||||
- disk_size_gb: 100
|
||||
caching: ReadWrite
|
||||
managed_disk:
|
||||
storage_account_type: Standard_LRS
|
||||
|
||||
cleanup_disks
|
||||
-------------
|
||||
Optional. Default is ``False``. If set to ``True``, disks will be cleaned up
|
||||
when the VM that they belong to is deleted.
|
||||
|
||||
cleanup_vhds
|
||||
------------
|
||||
Optional. Default is ``False``. If set to ``True``, VHDs will be cleaned up
|
||||
when the VM and disk that they belong to are deleted. Requires ``cleanup_disks``
|
||||
to be set to ``True``.
|
||||
|
||||
cleanup_data_disks
|
||||
------------------
|
||||
Optional. Default is ``False``. If set to ``True``, data disks (non-root
|
||||
volumes) will be cleaned up whtn the VM that they are attached to is deleted.
|
||||
Requires ``cleanup_disks`` to be set to ``True``.
|
||||
|
||||
cleanup_interfaces
|
||||
------------------
|
||||
Optional. Default is ``False``. Normally when a VM is deleted, its associated
|
||||
interfaces and IPs are retained. This is useful if you expect the deleted VM
|
||||
to be recreated with the same name and network settings. If you would like
|
||||
interfaces and IPs to be deleted when their associated VM is deleted, set this
|
||||
to ``True``.
|
||||
|
||||
userdata
|
||||
--------
|
||||
Optional. Any custom cloud data that needs to be specified. How this data is
|
||||
used depends on the operating system and image that is used. For instance,
|
||||
Linux images that use ``cloud-init`` will import this data for use with that
|
||||
program. Some Windows images will create a file with a copy of this data, and
|
||||
others will ignore it. If a Windows image creates a file, then the location
|
||||
will depend upon the version of Windows. This will be ignored if the
|
||||
``userdata_file`` is specified.
|
||||
|
||||
userdata_file
|
||||
-------------
|
||||
Optional. The path to a file to be read and submitted to Azure as user data.
|
||||
How this is used depends on the operating system that is being deployed. If
|
||||
used, any ``userdata`` setting will be ignored.
|
||||
|
||||
userdata_sendkeys
|
||||
-----------------
|
||||
Optional. Set to ``True`` in order to generate salt minion keys and provide
|
||||
them as variables to the userdata script when running it through the template
|
||||
renderer. The keys can be referenced as ``{{opts['priv_key']}}`` and
|
||||
``{{opts['pub_key']}}``.
|
||||
|
||||
userdata_template
|
||||
-----------------
|
||||
Optional. Enter the renderer, such as ``jinja``, to be used for the userdata
|
||||
script template.
|
||||
|
||||
wait_for_ip_timeout
|
||||
-------------------
|
||||
Optional. Default is ``600``. When waiting for a VM to be created, Salt Cloud
|
||||
will attempt to connect to the VM's IP address until it starts responding. This
|
||||
setting specifies the maximum time to wait for a response.
|
||||
|
||||
wait_for_ip_interval
|
||||
--------------------
|
||||
Optional. Default is ``10``. How long to wait between attempts to connect to
|
||||
the VM's IP.
|
||||
|
||||
wait_for_ip_interval_multiplier
|
||||
-------------------------------
|
||||
Optional. Default is ``1``. Increase the interval by this multiplier after
|
||||
each request; helps with throttling.
|
||||
|
||||
expire_publisher_cache
|
||||
----------------------
|
||||
Optional. Default is ``604800``. When fetching image data using
|
||||
``--list-images``, a number of web calls need to be made to the Azure ARM API.
|
||||
This is normally very fast when performed using a VM that exists inside Azure
|
||||
itself, but can be very slow when made from an external connection.
|
||||
|
||||
By default, the publisher data will be cached, and only updated every ``604800``
|
||||
seconds (7 days). If you need the publisher cache to be updated at a different
|
||||
frequency, change this setting. Setting it to ``0`` will turn off the publisher
|
||||
cache.
|
||||
|
||||
expire_offer_cache
|
||||
------------------
|
||||
Optional. Default is ``518400``. See ``expire_publisher_cache`` for details on
|
||||
why this exists.
|
||||
|
||||
By default, the offer data will be cached, and only updated every ``518400``
|
||||
seconds (6 days). If you need the offer cache to be updated at a different
|
||||
frequency, change this setting. Setting it to ``0`` will turn off the publiser
|
||||
cache.
|
||||
|
||||
expire_sku_cache
|
||||
----------------
|
||||
Optional. Default is ``432000``. See ``expire_publisher_cache`` for details on
|
||||
why this exists.
|
||||
|
||||
By default, the sku data will be cached, and only updated every ``432000``
|
||||
seconds (5 days). If you need the sku cache to be updated at a different
|
||||
frequency, change this setting. Setting it to ``0`` will turn off the sku
|
||||
cache.
|
||||
|
||||
expire_version_cache
|
||||
--------------------
|
||||
Optional. Default is ``345600``. See ``expire_publisher_cache`` for details on
|
||||
why this exists.
|
||||
|
||||
By default, the version data will be cached, and only updated every ``345600``
|
||||
seconds (4 days). If you need the version cache to be updated at a different
|
||||
frequency, change this setting. Setting it to ``0`` will turn off the version
|
||||
cache.
|
||||
|
||||
expire_group_cache
|
||||
------------------
|
||||
Optional. Default is ``14400``. See ``expire_publisher_cache`` for details on
|
||||
why this exists.
|
||||
|
||||
By default, the resource group data will be cached, and only updated every
|
||||
``14400`` seconds (4 hours). If you need the resource group cache to be updated
|
||||
at a different frequency, change this setting. Setting it to ``0`` will turn
|
||||
off the resource group cache.
|
||||
|
||||
expire_interface_cache
|
||||
----------------------
|
||||
Optional. Default is ``3600``. See ``expire_publisher_cache`` for details on
|
||||
why this exists.
|
||||
|
||||
By default, the interface data will be cached, and only updated every ``3600``
|
||||
seconds (1 hour). If you need the interface cache to be updated at a different
|
||||
frequency, change this setting. Setting it to ``0`` will turn off the interface
|
||||
cache.
|
||||
|
||||
expire_network_cache
|
||||
--------------------
|
||||
Optional. Default is ``3600``. See ``expire_publisher_cache`` for details on
|
||||
why this exists.
|
||||
|
||||
By default, the network data will be cached, and only updated every ``3600``
|
||||
seconds (1 hour). If you need the network cache to be updated at a different
|
||||
frequency, change this setting. Setting it to ``0`` will turn off the network
|
||||
cache.
|
||||
|
||||
|
||||
Other Options
|
||||
=============
|
||||
Other options relevant to Azure ARM.
|
||||
|
||||
storage_account
|
||||
---------------
|
||||
Required for actions involving an Azure storage account.
|
||||
|
||||
storage_key
|
||||
-----------
|
||||
Required for actions involving an Azure storage account.
|
||||
|
||||
|
||||
Show Instance
|
||||
=============
|
||||
This action is a thin wrapper around ``--full-query``, which displays details on
|
||||
a single instance only. In an environment with several machines, this will save
|
||||
a user from having to sort through all instance data, just to examine a single
|
||||
instance.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
salt-cloud -a show_instance myinstance
|
|
@ -28,10 +28,7 @@ upon execution. Most often, it uses ``get_configured_provider()`` to determine
|
|||
if the necessary configuration has been set up. It may also check for necessary
|
||||
imports, to decide whether to load the module. In most cases, it will return a
|
||||
``True`` or ``False`` value. If the name of the driver used does not match the
|
||||
filename, then that name should be returned instead of ``True``. An example of
|
||||
this may be seen in the Azure module:
|
||||
|
||||
https://github.com/saltstack/salt/tree/|repo_primary_branch|/salt/cloud/clouds/msazure.py
|
||||
filename, then that name should be returned instead of ``True``.
|
||||
|
||||
The get_configured_provider() Function
|
||||
--------------------------------------
|
||||
|
@ -240,8 +237,7 @@ The script() Function
|
|||
---------------------
|
||||
This function builds the deploy script to be used on the remote machine. It is
|
||||
likely to be moved into the ``salt.utils.cloud`` library in the near future, as
|
||||
it is very generic and can usually be copied wholesale from another module. An
|
||||
excellent example is in the Azure driver.
|
||||
it is very generic and can usually be copied wholesale from another module.
|
||||
|
||||
The destroy() Function
|
||||
----------------------
|
||||
|
|
|
@ -106,8 +106,6 @@ Cloud Provider Specifics
|
|||
:maxdepth: 3
|
||||
|
||||
Getting Started With Aliyun <aliyun>
|
||||
Getting Started With Azure <azure>
|
||||
Getting Started With Azure Arm <azurearm>
|
||||
Getting Started With CloudStack <cloudstack>
|
||||
Getting Started With DigitalOcean <digitalocean>
|
||||
Getting Started With Dimension Data <dimensiondata>
|
||||
|
|
|
@ -13,7 +13,7 @@ are built with the `relenv <https://github.com/saltstack/relative-environment-fo
|
|||
|
||||
Docker Containers
|
||||
=================
|
||||
The Salt Project uses docker containers to build our packages. If you are building your own packages you can use
|
||||
The Salt Project uses docker containers to build our deb and rpm packages. If you are building your own packages you can use
|
||||
the same containers we build with in the Github piplines. These containers are documented `here <https://github.com/saltstack/salt-ci-containers/tree/main/custom/packaging>`_.
|
||||
|
||||
|
||||
|
@ -53,6 +53,13 @@ How to build onedir only
|
|||
|
||||
How to build rpm packages
|
||||
=========================
|
||||
|
||||
#. Ensure you are in the current Salt cloned git repo:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd <path-to-salt-repo>
|
||||
|
||||
#. Install the dependencies:
|
||||
|
||||
.. code-block:: bash
|
||||
|
@ -72,12 +79,6 @@ How to build rpm packages
|
|||
|
||||
pip install -r requirements/static/ci/py{python_version}/changelog.txt
|
||||
|
||||
#. Ensure you are in the current Salt cloned git repo:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd <path-to-salt-repo>
|
||||
|
||||
#. (Optional) To build a specific Salt version, run tools and set Salt version:
|
||||
|
||||
.. code-block:: bash
|
||||
|
@ -93,10 +94,15 @@ How to build rpm packages
|
|||
tools pkg build rpm --relenv-version <relenv-version> --python-version <python-version> --arch <arch>
|
||||
|
||||
|
||||
|
||||
How to build deb packages
|
||||
=========================
|
||||
|
||||
#. Ensure you are in the current Salt cloned git repo.:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd <path-to-salt-repo>
|
||||
|
||||
#. Install the dependencies:
|
||||
|
||||
.. code-block:: bash
|
||||
|
@ -113,12 +119,6 @@ How to build deb packages
|
|||
|
||||
pip install -r requirements/static/ci/py{python_version}/changelog.txt
|
||||
|
||||
#. Ensure you are in the current Salt cloned git repo.:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd <path-to-salt-repo>
|
||||
|
||||
#. (Optional) To build a specific Salt version, run tools and set Salt version:
|
||||
|
||||
.. code-block:: bash
|
||||
|
@ -135,6 +135,56 @@ How to build deb packages
|
|||
tools pkg build deb --relenv-version <relenv-version> --python-version <python-version> --arch <arch>
|
||||
|
||||
|
||||
How to build MacOS packages
|
||||
===========================
|
||||
|
||||
#. Ensure you are in the current Salt cloned git repo.:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd <path-to-salt-repo>
|
||||
|
||||
#. Install the dependencies:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
pip install -r requirements/static/ci/py{python_version}/tools.txt
|
||||
|
||||
#. Build the MacOS package:
|
||||
|
||||
Only the salt-version argument is required, the rest are optional.
|
||||
Do note that you will not be able to sign the packages when building them.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
tools pkg build macos --salt-version <salt-version>
|
||||
|
||||
|
||||
How to build Windows packages
|
||||
=============================
|
||||
|
||||
#. Ensure you are in the current Salt cloned git repo.:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
cd <path-to-salt-repo>
|
||||
|
||||
#. Install the dependencies:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
pip install -r requirements/static/ci/py{python_version}/tools.txt
|
||||
|
||||
#. Build the MacOS package:
|
||||
|
||||
Only the arch and salt-version arguments are required, the rest are optional.
|
||||
Do note that you will not be able to sign the packages when building them.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
tools pkg build windows --salt-version <salt-version> --arch <arch>
|
||||
|
||||
|
||||
How to access python binary
|
||||
===========================
|
||||
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
Add release specific details below
|
||||
-->
|
||||
|
||||
## Azure Salt Extension
|
||||
|
||||
Starting from Salt version 3007.0, the Azure functionality previously available in the Salt code base is fully removed. To continue using Salt's features for interacting with Azure resources, users are required to utilize the Azure Salt extension. For more information, refer to the [Azure Salt Extension GitHub repository](https://github.com/salt-extensions/saltext-azurerm).
|
||||
|
||||
<!--
|
||||
Do not edit the changelog below.
|
||||
|
|
|
@ -246,36 +246,16 @@ From the minion folder, type
|
|||
|
||||
.. code-block:: bash
|
||||
|
||||
vagrant init
|
||||
vagrant init ubuntu/focal64
|
||||
|
||||
This command creates a default Vagrantfile configuration file. This
|
||||
This command creates a default Vagrantfile configuration file and import focal64 virtualbox image file to configuration, so it could be used. This
|
||||
configuration file will be used to pass configuration parameters to the Salt
|
||||
provisioner in Step 3.
|
||||
|
||||
Import Precise64 Ubuntu Box
|
||||
---------------------------
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
vagrant box add precise64 http://files.vagrantup.com/precise64.box
|
||||
|
||||
.. note::
|
||||
|
||||
This box is added at the global Vagrant level. You only need to do it
|
||||
once as each VM will use this same file.
|
||||
|
||||
Modify the Vagrantfile
|
||||
----------------------
|
||||
|
||||
Modify ./minion/Vagrantfile to use th precise64 box. Change the ``config.vm.box``
|
||||
line to:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
config.vm.box = "precise64"
|
||||
|
||||
Uncomment the line creating a host-only IP. This is the ip of your minion
|
||||
(you can change it to something else if that IP is already in use):
|
||||
Modify Vagrantfile to use th private_ip in local network.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
|
@ -310,7 +290,7 @@ Now log into the VM in ssh using Vagrant again:
|
|||
vagrant ssh
|
||||
|
||||
You should see the shell prompt change to something similar to
|
||||
``vagrant@precise64:~$`` meaning you're inside the VM. From there, enter the
|
||||
``vagrant@focal64:~$`` meaning you're inside the VM. From there, enter the
|
||||
following:
|
||||
|
||||
.. code-block:: bash
|
||||
|
|
42
noxfile.py
42
noxfile.py
|
@ -104,7 +104,7 @@ def session_warn(session, message):
|
|||
try:
|
||||
session.warn(message)
|
||||
except AttributeError:
|
||||
session.log("WARNING: {}".format(message))
|
||||
session.log(f"WARNING: {message}")
|
||||
|
||||
|
||||
def session_run_always(session, *command, **kwargs):
|
||||
|
@ -129,15 +129,15 @@ def session_run_always(session, *command, **kwargs):
|
|||
|
||||
def find_session_runner(session, name, python_version, onedir=False, **kwargs):
|
||||
if onedir:
|
||||
name += "-onedir-{}".format(ONEDIR_PYTHON_PATH)
|
||||
name += f"-onedir-{ONEDIR_PYTHON_PATH}"
|
||||
else:
|
||||
name += "-{}".format(python_version)
|
||||
name += f"-{python_version}"
|
||||
for s, _ in session._runner.manifest.list_all_sessions():
|
||||
if name not in s.signatures:
|
||||
continue
|
||||
for signature in s.signatures:
|
||||
for key, value in kwargs.items():
|
||||
param = "{}={!r}".format(key, value)
|
||||
param = f"{key}={value!r}"
|
||||
if param not in signature:
|
||||
break
|
||||
else:
|
||||
|
@ -185,10 +185,8 @@ def _get_session_python_version_info(session):
|
|||
|
||||
def _get_pydir(session):
|
||||
version_info = _get_session_python_version_info(session)
|
||||
if version_info < (3, 5):
|
||||
session.error("Only Python >= 3.5 is supported")
|
||||
if IS_WINDOWS and version_info < (3, 6):
|
||||
session.error("Only Python >= 3.6 is supported on Windows")
|
||||
if version_info < (3, 8):
|
||||
session.error("Only Python >= 3.8 is supported")
|
||||
return "py{}.{}".format(*version_info)
|
||||
|
||||
|
||||
|
@ -203,7 +201,7 @@ def _get_pip_requirements_file(session, transport, crypto=None, requirements_typ
|
|||
"static",
|
||||
requirements_type,
|
||||
pydir,
|
||||
"{}-windows.txt".format(transport),
|
||||
f"{transport}-windows.txt",
|
||||
)
|
||||
if os.path.exists(_requirements_file):
|
||||
return _requirements_file
|
||||
|
@ -217,7 +215,7 @@ def _get_pip_requirements_file(session, transport, crypto=None, requirements_typ
|
|||
)
|
||||
if os.path.exists(_requirements_file):
|
||||
return _requirements_file
|
||||
session.error("Could not find a windows requirements file for {}".format(pydir))
|
||||
session.error(f"Could not find a windows requirements file for {pydir}")
|
||||
elif IS_DARWIN:
|
||||
if crypto is None:
|
||||
_requirements_file = os.path.join(
|
||||
|
@ -225,7 +223,7 @@ def _get_pip_requirements_file(session, transport, crypto=None, requirements_typ
|
|||
"static",
|
||||
requirements_type,
|
||||
pydir,
|
||||
"{}-darwin.txt".format(transport),
|
||||
f"{transport}-darwin.txt",
|
||||
)
|
||||
if os.path.exists(_requirements_file):
|
||||
return _requirements_file
|
||||
|
@ -239,7 +237,7 @@ def _get_pip_requirements_file(session, transport, crypto=None, requirements_typ
|
|||
)
|
||||
if os.path.exists(_requirements_file):
|
||||
return _requirements_file
|
||||
session.error("Could not find a darwin requirements file for {}".format(pydir))
|
||||
session.error(f"Could not find a darwin requirements file for {pydir}")
|
||||
elif IS_FREEBSD:
|
||||
if crypto is None:
|
||||
_requirements_file = os.path.join(
|
||||
|
@ -247,7 +245,7 @@ def _get_pip_requirements_file(session, transport, crypto=None, requirements_typ
|
|||
"static",
|
||||
requirements_type,
|
||||
pydir,
|
||||
"{}-freebsd.txt".format(transport),
|
||||
f"{transport}-freebsd.txt",
|
||||
)
|
||||
if os.path.exists(_requirements_file):
|
||||
return _requirements_file
|
||||
|
@ -261,7 +259,7 @@ def _get_pip_requirements_file(session, transport, crypto=None, requirements_typ
|
|||
)
|
||||
if os.path.exists(_requirements_file):
|
||||
return _requirements_file
|
||||
session.error("Could not find a freebsd requirements file for {}".format(pydir))
|
||||
session.error(f"Could not find a freebsd requirements file for {pydir}")
|
||||
else:
|
||||
if crypto is None:
|
||||
_requirements_file = os.path.join(
|
||||
|
@ -269,7 +267,7 @@ def _get_pip_requirements_file(session, transport, crypto=None, requirements_typ
|
|||
"static",
|
||||
requirements_type,
|
||||
pydir,
|
||||
"{}-linux.txt".format(transport),
|
||||
f"{transport}-linux.txt",
|
||||
)
|
||||
if os.path.exists(_requirements_file):
|
||||
return _requirements_file
|
||||
|
@ -283,7 +281,7 @@ def _get_pip_requirements_file(session, transport, crypto=None, requirements_typ
|
|||
)
|
||||
if os.path.exists(_requirements_file):
|
||||
return _requirements_file
|
||||
session.error("Could not find a linux requirements file for {}".format(pydir))
|
||||
session.error(f"Could not find a linux requirements file for {pydir}")
|
||||
|
||||
|
||||
def _upgrade_pip_setuptools_and_wheel(session, upgrade=True, onedir=False):
|
||||
|
@ -571,7 +569,7 @@ def test_parametrized(session, coverage, transport, crypto):
|
|||
session.install(*install_command, silent=PIP_INSTALL_SILENT)
|
||||
|
||||
cmd_args = [
|
||||
"--transport={}".format(transport),
|
||||
f"--transport={transport}",
|
||||
] + session.posargs
|
||||
_pytest(session, coverage=coverage, cmd_args=cmd_args)
|
||||
|
||||
|
@ -1016,7 +1014,7 @@ def _pytest(session, coverage, cmd_args, env=None):
|
|||
if arg == "--log-file" or arg.startswith("--log-file="):
|
||||
break
|
||||
else:
|
||||
args.append("--log-file={}".format(RUNTESTS_LOGFILE))
|
||||
args.append(f"--log-file={RUNTESTS_LOGFILE}")
|
||||
args.extend(cmd_args)
|
||||
|
||||
if PRINT_SYSTEM_INFO and "--sysinfo" not in args:
|
||||
|
@ -1358,7 +1356,7 @@ def _lint(
|
|||
session.run("pylint", "--version")
|
||||
pylint_report_path = os.environ.get("PYLINT_REPORT")
|
||||
|
||||
cmd_args = ["pylint", "--rcfile={}".format(rcfile)] + list(flags) + list(paths)
|
||||
cmd_args = ["pylint", f"--rcfile={rcfile}"] + list(flags) + list(paths)
|
||||
|
||||
cmd_kwargs = {"env": {"PYTHONUNBUFFERED": "1"}}
|
||||
|
||||
|
@ -1433,8 +1431,8 @@ def lint(session):
|
|||
"""
|
||||
Run PyLint against Salt and it's test suite. Set PYLINT_REPORT to a path to capture output.
|
||||
"""
|
||||
session.notify("lint-salt-{}".format(session.python))
|
||||
session.notify("lint-tests-{}".format(session.python))
|
||||
session.notify(f"lint-salt-{session.python}")
|
||||
session.notify(f"lint-tests-{session.python}")
|
||||
|
||||
|
||||
@nox.session(python="3", name="lint-salt")
|
||||
|
@ -1498,7 +1496,7 @@ def docs(session, compress, update, clean):
|
|||
"""
|
||||
Build Salt's Documentation
|
||||
"""
|
||||
session.notify("docs-html-{}(compress={})".format(session.python, compress))
|
||||
session.notify(f"docs-html-{session.python}(compress={compress})")
|
||||
session.notify(
|
||||
find_session_runner(
|
||||
session,
|
||||
|
|
|
@ -21,26 +21,6 @@
|
|||
# The default version to be built
|
||||
# TODO: The is not selectable via RELENV yet. This has to match whatever relenv
|
||||
# TODO: is building
|
||||
PY_VERSION="3.10.9"
|
||||
|
||||
# Valid versions supported by macOS
|
||||
PY_VERSIONS=(
|
||||
"3.10.9"
|
||||
"3.10.8"
|
||||
"3.10.7"
|
||||
"3.9.16"
|
||||
"3.9.15"
|
||||
"3.9.14"
|
||||
"3.9.13"
|
||||
"3.9.12"
|
||||
"3.9.11"
|
||||
"3.8.16"
|
||||
"3.8.15"
|
||||
"3.8.14"
|
||||
"3.8.13"
|
||||
"3.8.12"
|
||||
"3.8.11"
|
||||
)
|
||||
|
||||
# Locations
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
|
@ -65,14 +45,10 @@ _usage() {
|
|||
echo ""
|
||||
echo " -h, --help this message"
|
||||
echo " -b, --build build python instead of fetching"
|
||||
echo " -v, --version version of python to install"
|
||||
echo " python version must be one of:"
|
||||
for i in "${PY_VERSIONS[@]}"; do
|
||||
echo " - $i"
|
||||
done
|
||||
echo " -v, --version version of python to install, must be available with relenv"
|
||||
echo ""
|
||||
echo " To build python 3.9.15:"
|
||||
echo " example: $0 --version 3.9.15"
|
||||
echo " To build python 3.10.11:"
|
||||
echo " example: $0 --version 3.10.11"
|
||||
}
|
||||
|
||||
# _msg
|
||||
|
@ -129,13 +105,6 @@ while true; do
|
|||
esac
|
||||
done
|
||||
|
||||
if ! [[ " ${PY_VERSIONS[*]} " =~ " $PY_VERSION " ]]; then
|
||||
echo "Invalid Python Version: $PY_VERSION"
|
||||
echo ""
|
||||
_usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Script Start
|
||||
#-------------------------------------------------------------------------------
|
||||
|
@ -231,8 +200,8 @@ else
|
|||
# We want to suppress the output here so it looks nice
|
||||
# To see the output, remove the output redirection
|
||||
_msg "Fetching python (relenv)"
|
||||
relenv fetch >/dev/null 2>&1
|
||||
if [ -f "$RELENV_DIR/build/x86_64-macos.tar.xz" ]; then
|
||||
relenv fetch --python $PY_VERSION >/dev/null 2>&1
|
||||
if [ -f "$RELENV_DIR/build/$PY_VERSION-x86_64-macos.tar.xz" ]; then
|
||||
_success
|
||||
else
|
||||
_failure
|
||||
|
|
|
@ -596,14 +596,32 @@ class SaltPkgInstall:
|
|||
self.proc.run("launchctl", "disable", f"system/{service_name}")
|
||||
self.proc.run("launchctl", "bootout", "system", str(plist_file))
|
||||
elif upgrade:
|
||||
env = os.environ.copy()
|
||||
extra_args = []
|
||||
if self.distro_id in ("ubuntu", "debian"):
|
||||
env["DEBIAN_FRONTEND"] = "noninteractive"
|
||||
extra_args = [
|
||||
"-o",
|
||||
"DPkg::Options::=--force-confdef",
|
||||
"-o",
|
||||
"DPkg::Options::=--force-confold",
|
||||
]
|
||||
log.info("Installing packages:\n%s", pprint.pformat(self.pkgs))
|
||||
ret = self.proc.run(self.pkg_mngr, "upgrade", "-y", *self.pkgs)
|
||||
args = extra_args + self.pkgs
|
||||
ret = self.proc.run(
|
||||
self.pkg_mngr,
|
||||
"upgrade",
|
||||
"-y",
|
||||
*args,
|
||||
_timeout=120,
|
||||
env=env,
|
||||
)
|
||||
else:
|
||||
log.info("Installing packages:\n%s", pprint.pformat(self.pkgs))
|
||||
ret = self.proc.run(self.pkg_mngr, "install", "-y", *self.pkgs)
|
||||
if not platform.is_darwin() and not platform.is_windows():
|
||||
# Make sure we don't have any trailing references to old package file locations
|
||||
assert "No such file or directory" not in ret.stdout
|
||||
ret.returncode == 0
|
||||
assert "/saltstack/salt/run" not in ret.stdout
|
||||
log.info(ret)
|
||||
self._check_retcode(ret)
|
||||
|
|
|
@ -40,7 +40,7 @@ param(
|
|||
[ValidatePattern("^\d{1,2}.\d{1,2}.\d{1,2}$")]
|
||||
[ValidateSet(
|
||||
"3.11.2",
|
||||
"3.10.10"
|
||||
"3.10.11"
|
||||
)]
|
||||
[Alias("p")]
|
||||
# The version of Python to be built. Pythonnet only supports up to Python
|
||||
|
@ -48,7 +48,7 @@ param(
|
|||
# supported up to 3.8. So we're pinned to the latest version of Python 3.8.
|
||||
# We may have to drop support for pycurl.
|
||||
# Default is: 3.8.16
|
||||
[String] $PythonVersion = "3.10.10",
|
||||
[String] $PythonVersion = "3.10.11",
|
||||
|
||||
[Parameter(Mandatory=$false)]
|
||||
[Alias("b")]
|
||||
|
@ -167,7 +167,7 @@ if ( ! $SkipInstall ) {
|
|||
Architecture = $Architecture
|
||||
}
|
||||
if ( $Build ) {
|
||||
$KeywordArguments["Build"] = $true
|
||||
$KeywordArguments["Build"] = $false
|
||||
}
|
||||
if ( $CICD ) {
|
||||
$KeywordArguments["CICD"] = $true
|
||||
|
|
|
@ -19,7 +19,7 @@ param(
|
|||
[ValidatePattern("^\d{1,2}.\d{1,2}.\d{1,2}$")]
|
||||
[ValidateSet(
|
||||
"3.11.2",
|
||||
"3.10.10"
|
||||
"3.10.11"
|
||||
)]
|
||||
[Alias("v")]
|
||||
# The version of Python to be built. Pythonnet only supports up to Python
|
||||
|
@ -27,7 +27,7 @@ param(
|
|||
# supported up to 3.8. So we're pinned to the latest version of Python 3.8.
|
||||
# We may have to drop support for pycurl or build it ourselves.
|
||||
# Default is: 3.8.16
|
||||
[String] $Version = "3.10.10",
|
||||
[String] $Version = "3.10.11",
|
||||
|
||||
[Parameter(Mandatory=$false)]
|
||||
[ValidateSet("x64", "x86", "amd64")]
|
||||
|
|
|
@ -10,3 +10,5 @@ packaging>=21.3
|
|||
looseversion
|
||||
# We need contextvars for salt-ssh
|
||||
contextvars
|
||||
tornado>=6.2.0 ; python_version < '3.8'
|
||||
tornado==6.3.2 ; python_version >= '3.8'
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
# Requirements in this file apply to all platforms.
|
||||
# We can also exclude platforms from the requirements using markers, but if a requirement only applies
|
||||
# to a particular platform, please add it to the corresponding `<platform>.in` file in this directory.
|
||||
azure==4.0.0; sys_platform != 'win32'
|
||||
apache-libcloud>=1.5.0; sys_platform != 'win32'
|
||||
boto3>=1.16.0,<1.17.0; python_version < '3.6'
|
||||
boto3>=1.17.67; python_version >= '3.6'
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
--constraint=./py{py_version}/{platform}.txt
|
||||
|
||||
|
||||
sphinx>=3.5.1; python_version < '3.9'
|
||||
sphinx>=6.1.0; python_version >= '3.9'
|
||||
myst-docutils[linkify]
|
||||
|
|
|
@ -4,10 +4,6 @@
|
|||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.10/cloud.txt --pip-args='--constraint=requirements/static/ci/py3.10/linux.txt' requirements/base.txt requirements/pytest.txt requirements/static/ci/cloud.in requirements/static/ci/common.in requirements/static/pkg/linux.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.7
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
|
@ -31,304 +27,6 @@ attrs==21.2.0
|
|||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.27
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.52
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.2.0
|
||||
|
@ -354,21 +52,19 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
# via vcert
|
||||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# pynacl
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post1
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -388,10 +84,6 @@ croniter==1.0.15 ; sys_platform != "win32"
|
|||
cryptography==39.0.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
|
@ -449,8 +141,6 @@ iniconfig==1.1.1
|
|||
# via pytest
|
||||
ipaddress==1.0.23
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
|
@ -516,98 +206,6 @@ msgpack==1.0.2
|
|||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.21
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
|
@ -620,8 +218,6 @@ netaddr==0.7.19
|
|||
# junos-eznc
|
||||
ntlm-auth==1.3.0
|
||||
# via requests-ntlm
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.1
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
|
@ -665,8 +261,6 @@ pycryptodomex==3.10.1
|
|||
# via -r requirements/crypto.txt
|
||||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via adal
|
||||
pynacl==1.4.0
|
||||
# via paramiko
|
||||
pyopenssl==23.0.0
|
||||
|
@ -730,9 +324,6 @@ pytest==7.2.0 ; python_version > "3.6"
|
|||
python-dateutil==2.8.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
|
@ -763,30 +354,19 @@ pyzmq==23.2.0 ; python_version < "3.11"
|
|||
# pytest-salt-factories
|
||||
requests-ntlm==1.1.0
|
||||
# via pywinrm
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# profitbricks
|
||||
# pyvmomi
|
||||
# pywinrm
|
||||
# requests-ntlm
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# vcert
|
||||
responses==0.14.0
|
||||
|
@ -813,12 +393,10 @@ six==1.16.0
|
|||
# etcd3-py
|
||||
# genshi
|
||||
# geomet
|
||||
# isodate
|
||||
# jsonschema
|
||||
# junos-eznc
|
||||
# kazoo
|
||||
# kubernetes
|
||||
# msrestazure
|
||||
# ncclient
|
||||
# paramiko
|
||||
# profitbricks
|
||||
|
@ -850,6 +428,8 @@ toml==0.10.2
|
|||
# via -r requirements/static/ci/common.in
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
transitions==0.8.9
|
||||
# via junos-eznc
|
||||
typing-extensions==4.2.0
|
||||
|
|
|
@ -4,10 +4,6 @@
|
|||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.10/darwin.txt --pip-args='--constraint=requirements/static/pkg/py3.10/darwin.txt' requirements/darwin.txt requirements/pytest.txt requirements/static/ci/common.in requirements/static/ci/darwin.in requirements/static/pkg/darwin.in
|
||||
#
|
||||
adal==1.2.5
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
|
@ -31,304 +27,6 @@ attrs==20.3.0
|
|||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.26
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.51
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.1.6
|
||||
|
@ -354,22 +52,20 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
# via vcert
|
||||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# pygit2
|
||||
# pynacl
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post2
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -389,10 +85,6 @@ croniter==0.3.29 ; sys_platform != "win32"
|
|||
cryptography==39.0.2
|
||||
# via
|
||||
# -r requirements/darwin.txt
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
|
@ -452,8 +144,6 @@ iniconfig==1.0.1
|
|||
# via pytest
|
||||
ipaddress==1.0.22
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
|
@ -519,98 +209,6 @@ msgpack==1.0.2
|
|||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.19
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
|
@ -619,8 +217,6 @@ ncclient==0.6.9
|
|||
# via junos-eznc
|
||||
netaddr==0.7.19
|
||||
# via junos-eznc
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.0
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
|
@ -666,8 +262,6 @@ pycryptodomex==3.9.8
|
|||
# via -r requirements/crypto.txt
|
||||
pygit2==1.9.1 ; python_version >= "3.7"
|
||||
# via -r requirements/static/ci/darwin.in
|
||||
pyjwt==2.4.0
|
||||
# via adal
|
||||
pynacl==1.3.0
|
||||
# via paramiko
|
||||
pyopenssl==23.0.0
|
||||
|
@ -725,9 +319,6 @@ pytest==7.2.0 ; python_version > "3.6"
|
|||
python-dateutil==2.8.0
|
||||
# via
|
||||
# -r requirements/darwin.txt
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
|
@ -755,27 +346,16 @@ pyzmq==23.2.0 ; python_version < "3.11"
|
|||
# via
|
||||
# -r requirements/zeromq.txt
|
||||
# pytest-salt-factories
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# vcert
|
||||
# vultr
|
||||
|
@ -802,12 +382,10 @@ six==1.16.0
|
|||
# genshi
|
||||
# geomet
|
||||
# google-auth
|
||||
# isodate
|
||||
# jsonschema
|
||||
# junos-eznc
|
||||
# kubernetes
|
||||
# mock
|
||||
# msrestazure
|
||||
# ncclient
|
||||
# paramiko
|
||||
# pynacl
|
||||
|
@ -832,6 +410,8 @@ toml==0.10.2
|
|||
# via -r requirements/static/ci/common.in
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
transitions==0.8.1
|
||||
# via junos-eznc
|
||||
typing-extensions==4.2.0
|
||||
|
|
|
@ -12,7 +12,7 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -c requirements/static/ci/py3.10/linux.txt
|
||||
# requests
|
||||
chardet==3.0.4
|
||||
charset-normalizer==2.0.12
|
||||
# via
|
||||
# -c requirements/static/ci/py3.10/linux.txt
|
||||
# requests
|
||||
|
@ -139,7 +139,7 @@ pyzmq==23.2.0 ; python_version < "3.11"
|
|||
# via
|
||||
# -c requirements/static/ci/py3.10/linux.txt
|
||||
# -r requirements/zeromq.txt
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.10/linux.txt
|
||||
# -r requirements/base.txt
|
||||
|
@ -177,6 +177,10 @@ tempora==4.1.1
|
|||
# via
|
||||
# -c requirements/static/ci/py3.10/linux.txt
|
||||
# portend
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via
|
||||
# -c requirements/static/ci/py3.10/linux.txt
|
||||
# -r requirements/base.txt
|
||||
typing-extensions==4.2.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.10/linux.txt
|
||||
|
|
|
@ -4,10 +4,6 @@
|
|||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.10/freebsd.txt --pip-args='--constraint=requirements/static/pkg/py3.10/freebsd.txt' requirements/base.txt requirements/pytest.txt requirements/static/ci/common.in requirements/static/ci/freebsd.in requirements/static/pkg/freebsd.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.5
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
|
@ -29,304 +25,6 @@ attrs==20.3.0
|
|||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.26
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.51
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.1.6
|
||||
|
@ -352,22 +50,20 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
# via vcert
|
||||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# pygit2
|
||||
# pynacl
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post2
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -386,10 +82,6 @@ croniter==0.3.29 ; sys_platform != "win32"
|
|||
# via -r requirements/static/ci/common.in
|
||||
cryptography==39.0.2
|
||||
# via
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
|
@ -447,8 +139,6 @@ iniconfig==1.0.1
|
|||
# via pytest
|
||||
ipaddress==1.0.22
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
|
@ -516,98 +206,6 @@ msgpack==1.0.2
|
|||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.19
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
|
@ -616,8 +214,6 @@ ncclient==0.6.9
|
|||
# via junos-eznc
|
||||
netaddr==0.7.19
|
||||
# via junos-eznc
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.0
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
|
@ -665,8 +261,6 @@ pygit2==1.8.0 ; python_version >= "3.7"
|
|||
# via -r requirements/static/ci/freebsd.in
|
||||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via adal
|
||||
pynacl==1.3.0
|
||||
# via paramiko
|
||||
pyopenssl==23.0.0
|
||||
|
@ -724,9 +318,6 @@ pytest==7.2.0 ; python_version > "3.6"
|
|||
python-dateutil==2.8.1
|
||||
# via
|
||||
# -r requirements/static/pkg/freebsd.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
|
@ -754,27 +345,16 @@ pyzmq==23.2.0 ; python_version < "3.11"
|
|||
# via
|
||||
# -r requirements/zeromq.txt
|
||||
# pytest-salt-factories
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# vcert
|
||||
responses==0.10.6
|
||||
|
@ -800,14 +380,12 @@ six==1.16.0
|
|||
# genshi
|
||||
# geomet
|
||||
# google-auth
|
||||
# isodate
|
||||
# jsonschema
|
||||
# junos-eznc
|
||||
# kazoo
|
||||
# kubernetes
|
||||
# mock
|
||||
# more-itertools
|
||||
# msrestazure
|
||||
# ncclient
|
||||
# paramiko
|
||||
# pynacl
|
||||
|
@ -832,6 +410,8 @@ toml==0.10.2
|
|||
# via -r requirements/static/ci/common.in
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
transitions==0.8.1
|
||||
# via junos-eznc
|
||||
typing-extensions==4.2.0
|
||||
|
|
|
@ -4,10 +4,6 @@
|
|||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.10/lint.txt --pip-args='--constraint=requirements/static/ci/py3.10/linux.txt' requirements/base.txt requirements/static/ci/common.in requirements/static/ci/lint.in requirements/static/ci/linux.in requirements/static/pkg/linux.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.7
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
|
@ -32,304 +28,6 @@ attrs==21.2.0
|
|||
# via
|
||||
# aiohttp
|
||||
# jsonschema
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.27
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.52
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.2.0
|
||||
|
@ -357,7 +55,6 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# python-telegram-bot
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
|
@ -365,7 +62,6 @@ certvalidator==0.11.1
|
|||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# pygit2
|
||||
|
@ -393,11 +89,7 @@ croniter==1.0.15 ; sys_platform != "win32"
|
|||
cryptography==39.0.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# ansible-core
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
|
@ -444,8 +136,6 @@ importlib-metadata==6.0.0
|
|||
# via -r requirements/static/pkg/linux.in
|
||||
ipaddress==1.0.23
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
isort==4.3.21
|
||||
# via pylint
|
||||
jaraco.classes==3.2.1
|
||||
|
@ -518,98 +208,6 @@ moto==3.0.1 ; python_version >= "3.6"
|
|||
# via -r requirements/static/ci/common.in
|
||||
msgpack==1.0.2
|
||||
# via -r requirements/base.txt
|
||||
msrest==0.6.21
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
|
@ -618,8 +216,6 @@ ncclient==0.6.9
|
|||
# via junos-eznc
|
||||
netaddr==0.8.0
|
||||
# via junos-eznc
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.1
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
|
@ -664,9 +260,7 @@ pyiface==0.0.11
|
|||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via
|
||||
# adal
|
||||
# twilio
|
||||
# via twilio
|
||||
pylint==2.4.4
|
||||
# via
|
||||
# -r requirements/static/ci/lint.in
|
||||
|
@ -692,9 +286,6 @@ python-consul==1.1.0
|
|||
python-dateutil==2.8.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
|
@ -730,28 +321,17 @@ redis-py-cluster==2.1.3
|
|||
# via -r requirements/static/ci/linux.in
|
||||
redis==3.5.3
|
||||
# via redis-py-cluster
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.26.0
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# python-consul
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# twilio
|
||||
# vcert
|
||||
|
@ -785,12 +365,10 @@ six==1.16.0
|
|||
# etcd3-py
|
||||
# genshi
|
||||
# geomet
|
||||
# isodate
|
||||
# jsonschema
|
||||
# junos-eznc
|
||||
# kazoo
|
||||
# kubernetes
|
||||
# msrestazure
|
||||
# ncclient
|
||||
# paramiko
|
||||
# pynacl
|
||||
|
@ -820,8 +398,10 @@ toml==0.10.2
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# -r requirements/static/ci/lint.in
|
||||
tornado==6.1
|
||||
# via python-telegram-bot
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# python-telegram-bot
|
||||
transitions==0.8.8
|
||||
# via junos-eznc
|
||||
twilio==7.9.2
|
||||
|
|
|
@ -4,10 +4,6 @@
|
|||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.10/linux.txt --pip-args='--constraint=requirements/static/pkg/py3.10/linux.txt' requirements/base.txt requirements/pytest.txt requirements/static/ci/common.in requirements/static/ci/linux.in requirements/static/pkg/linux.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.3
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
|
@ -35,309 +31,6 @@ attrs==20.3.0
|
|||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.18
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.5
|
||||
# via azure
|
||||
azure-datalake-store==0.0.44
|
||||
# via azure
|
||||
azure-eventgrid==1.2.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.6
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.0
|
||||
# via
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.1.6
|
||||
|
@ -365,7 +58,6 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# python-telegram-bot
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
|
@ -373,15 +65,14 @@ certvalidator==0.11.1
|
|||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# pygit2
|
||||
# pynacl
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post2
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -401,11 +92,7 @@ croniter==0.3.29 ; sys_platform != "win32"
|
|||
cryptography==39.0.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# ansible-core
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
|
@ -462,8 +149,6 @@ iniconfig==1.0.1
|
|||
# via pytest
|
||||
ipaddress==1.0.22
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
|
@ -532,95 +217,6 @@ msgpack==1.0.2
|
|||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.14
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.3
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
|
@ -629,8 +225,6 @@ ncclient==0.6.9
|
|||
# via junos-eznc
|
||||
netaddr==0.7.19
|
||||
# via junos-eznc
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.0
|
||||
# via certvalidator
|
||||
packaging==22.0
|
||||
|
@ -682,9 +276,7 @@ pyiface==0.0.11
|
|||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via
|
||||
# adal
|
||||
# twilio
|
||||
# via twilio
|
||||
pymysql==1.0.2 ; python_version > "3.5"
|
||||
# via -r requirements/static/ci/linux.in
|
||||
pynacl==1.3.0
|
||||
|
@ -744,9 +336,6 @@ python-consul==1.1.0
|
|||
python-dateutil==2.8.1
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
|
@ -785,28 +374,17 @@ redis-py-cluster==2.1.3
|
|||
# via -r requirements/static/ci/linux.in
|
||||
redis==3.5.3
|
||||
# via redis-py-cluster
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# python-consul
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# twilio
|
||||
# vcert
|
||||
|
@ -838,7 +416,6 @@ six==1.16.0
|
|||
# genshi
|
||||
# geomet
|
||||
# google-auth
|
||||
# isodate
|
||||
# jsonschema
|
||||
# junos-eznc
|
||||
# kazoo
|
||||
|
@ -874,8 +451,10 @@ toml==0.10.2
|
|||
# via -r requirements/static/ci/common.in
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
tornado==6.1
|
||||
# via python-telegram-bot
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# python-telegram-bot
|
||||
transitions==0.8.1
|
||||
# via junos-eznc
|
||||
twilio==7.9.2
|
||||
|
|
|
@ -142,7 +142,7 @@ pyzmq==25.0.2 ; sys_platform == "win32"
|
|||
# via
|
||||
# -r requirements/zeromq.txt
|
||||
# pytest-salt-factories
|
||||
requests==2.28.2
|
||||
requests==2.31.0
|
||||
# via -r requirements/base.txt
|
||||
six==1.16.0
|
||||
# via cheroot
|
||||
|
@ -150,6 +150,8 @@ tempora==5.2.1
|
|||
# via portend
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
typing-extensions==4.4.0
|
||||
# via
|
||||
# pydantic
|
||||
|
|
|
@ -129,7 +129,7 @@ pyzmq==25.0.2 ; python_version < "3.11"
|
|||
# via
|
||||
# -r requirements/zeromq.txt
|
||||
# pytest-salt-factories
|
||||
requests==2.28.2
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# docker
|
||||
|
@ -139,6 +139,8 @@ tempora==5.2.0
|
|||
# via portend
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
typing-extensions==4.4.0
|
||||
# via
|
||||
# pydantic
|
||||
|
|
|
@ -40,7 +40,7 @@ python-tools-scripts==0.12.0
|
|||
# via -r requirements/static/ci/tools.in
|
||||
pyyaml==6.0
|
||||
# via -r requirements/static/ci/tools.in
|
||||
requests==2.28.2
|
||||
requests==2.31.0
|
||||
# via
|
||||
# python-tools-scripts
|
||||
# virustotal3
|
||||
|
|
|
@ -49,10 +49,10 @@ cffi==1.14.6
|
|||
# clr-loader
|
||||
# cryptography
|
||||
# pygit2
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.1.1
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post1
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -322,7 +322,7 @@ pyzmq==25.0.2 ; sys_platform == "win32"
|
|||
# pytest-salt-factories
|
||||
requests-ntlm==1.1.0
|
||||
# via pywinrm
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
|
@ -381,6 +381,8 @@ toml==0.10.2
|
|||
# via -r requirements/static/ci/common.in
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
typing-extensions==4.4.0
|
||||
# via
|
||||
# pytest-shell-utilities
|
||||
|
|
10
requirements/static/ci/py3.11/darwin-crypto.txt
Normal file
10
requirements/static/ci/py3.11/darwin-crypto.txt
Normal file
|
@ -0,0 +1,10 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.11/darwin-crypto.txt --pip-args='--constraint=requirements/static/ci/py3.11/darwin.txt' requirements/static/ci/crypto.in
|
||||
#
|
||||
m2crypto==0.38.0
|
||||
# via -r requirements/static/ci/crypto.in
|
||||
pycryptodome==3.18.0
|
||||
# via -r requirements/static/ci/crypto.in
|
|
@ -4,10 +4,6 @@
|
|||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.11/darwin.txt --pip-args='--constraint=requirements/static/pkg/py3.11/darwin.txt' requirements/darwin.txt requirements/pytest.txt requirements/static/ci/common.in requirements/static/ci/darwin.in requirements/static/pkg/darwin.in
|
||||
#
|
||||
adal==1.2.5
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
|
@ -31,304 +27,6 @@ attrs==20.3.0
|
|||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.26
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.51
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.1.6
|
||||
|
@ -352,21 +50,19 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
# via vcert
|
||||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# pygit2
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post2
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -386,10 +82,6 @@ croniter==0.3.29 ; sys_platform != "win32"
|
|||
cryptography==39.0.2
|
||||
# via
|
||||
# -r requirements/darwin.txt
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# pyopenssl
|
||||
|
@ -446,8 +138,6 @@ iniconfig==1.0.1
|
|||
# via pytest
|
||||
ipaddress==1.0.22
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
|
@ -506,104 +196,10 @@ msgpack==1.0.2
|
|||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.19
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
# yarl
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.0
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
|
@ -644,8 +240,6 @@ pycryptodomex==3.9.8
|
|||
# via -r requirements/crypto.txt
|
||||
pygit2==1.9.1 ; python_version >= "3.7"
|
||||
# via -r requirements/static/ci/darwin.in
|
||||
pyjwt==2.4.0
|
||||
# via adal
|
||||
pyopenssl==23.0.0
|
||||
# via
|
||||
# -r requirements/darwin.txt
|
||||
|
@ -697,9 +291,6 @@ pytest==7.2.0 ; python_version > "3.6"
|
|||
python-dateutil==2.8.0
|
||||
# via
|
||||
# -r requirements/darwin.txt
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
|
@ -726,27 +317,16 @@ pyzmq==25.0.2 ; python_version >= "3.11"
|
|||
# via
|
||||
# -r requirements/zeromq.txt
|
||||
# pytest-salt-factories
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# vcert
|
||||
# vultr
|
||||
|
@ -771,11 +351,9 @@ six==1.16.0
|
|||
# genshi
|
||||
# geomet
|
||||
# google-auth
|
||||
# isodate
|
||||
# jsonschema
|
||||
# kubernetes
|
||||
# mock
|
||||
# msrestazure
|
||||
# python-dateutil
|
||||
# pyvmomi
|
||||
# responses
|
||||
|
@ -794,6 +372,8 @@ timelib==0.2.5
|
|||
# via -r requirements/darwin.txt
|
||||
toml==0.10.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
typing-extensions==4.2.0
|
||||
# via
|
||||
# pytest-shell-utilities
|
||||
|
|
10
requirements/static/ci/py3.11/freebsd-crypto.txt
Normal file
10
requirements/static/ci/py3.11/freebsd-crypto.txt
Normal file
|
@ -0,0 +1,10 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.11/freebsd-crypto.txt --pip-args='--constraint=requirements/static/ci/py3.11/freebsd.txt' requirements/static/ci/crypto.in
|
||||
#
|
||||
m2crypto==0.38.0
|
||||
# via -r requirements/static/ci/crypto.in
|
||||
pycryptodome==3.18.0
|
||||
# via -r requirements/static/ci/crypto.in
|
|
@ -4,10 +4,6 @@
|
|||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.11/freebsd.txt --pip-args='--constraint=requirements/static/pkg/py3.11/freebsd.txt' requirements/base.txt requirements/pytest.txt requirements/static/ci/common.in requirements/static/ci/freebsd.in requirements/static/pkg/freebsd.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.5
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
|
@ -29,304 +25,6 @@ attrs==20.3.0
|
|||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.26
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.51
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.1.6
|
||||
|
@ -352,22 +50,20 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
# via vcert
|
||||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# pygit2
|
||||
# pynacl
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post2
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -386,10 +82,6 @@ croniter==0.3.29 ; sys_platform != "win32"
|
|||
# via -r requirements/static/ci/common.in
|
||||
cryptography==39.0.2
|
||||
# via
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
|
@ -445,8 +137,6 @@ iniconfig==1.0.1
|
|||
# via pytest
|
||||
ipaddress==1.0.22
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
|
@ -507,104 +197,10 @@ msgpack==1.0.2
|
|||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.19
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
# yarl
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.0
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
|
@ -648,8 +244,6 @@ pygit2==1.8.0 ; python_version >= "3.7"
|
|||
# via -r requirements/static/ci/freebsd.in
|
||||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via adal
|
||||
pynacl==1.3.0
|
||||
# via paramiko
|
||||
pyopenssl==23.0.0
|
||||
|
@ -703,9 +297,6 @@ pytest==7.2.0 ; python_version > "3.6"
|
|||
python-dateutil==2.8.1
|
||||
# via
|
||||
# -r requirements/static/pkg/freebsd.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
|
@ -731,27 +322,16 @@ pyzmq==25.0.2 ; python_version >= "3.11"
|
|||
# via
|
||||
# -r requirements/zeromq.txt
|
||||
# pytest-salt-factories
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# vcert
|
||||
responses==0.10.6
|
||||
|
@ -775,13 +355,11 @@ six==1.16.0
|
|||
# genshi
|
||||
# geomet
|
||||
# google-auth
|
||||
# isodate
|
||||
# jsonschema
|
||||
# kazoo
|
||||
# kubernetes
|
||||
# mock
|
||||
# more-itertools
|
||||
# msrestazure
|
||||
# paramiko
|
||||
# pynacl
|
||||
# python-dateutil
|
||||
|
@ -802,6 +380,8 @@ timelib==0.2.5
|
|||
# via -r requirements/static/pkg/freebsd.in
|
||||
toml==0.10.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
typing-extensions==4.2.0
|
||||
# via
|
||||
# pytest-shell-utilities
|
||||
|
|
10
requirements/static/ci/py3.11/linux-crypto.txt
Normal file
10
requirements/static/ci/py3.11/linux-crypto.txt
Normal file
|
@ -0,0 +1,10 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.11/linux-crypto.txt --pip-args='--constraint=requirements/static/ci/py3.11/linux.txt' requirements/static/ci/crypto.in
|
||||
#
|
||||
m2crypto==0.38.0
|
||||
# via -r requirements/static/ci/crypto.in
|
||||
pycryptodome==3.18.0
|
||||
# via -r requirements/static/ci/crypto.in
|
|
@ -4,10 +4,6 @@
|
|||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.11/linux.txt --pip-args='--constraint=requirements/static/pkg/py3.11/linux.txt' requirements/base.txt requirements/pytest.txt requirements/static/ci/common.in requirements/static/ci/linux.in requirements/static/pkg/linux.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.3
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
|
@ -35,309 +31,6 @@ attrs==20.3.0
|
|||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.18
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.5
|
||||
# via azure
|
||||
azure-datalake-store==0.0.44
|
||||
# via azure
|
||||
azure-eventgrid==1.2.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.6
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.0
|
||||
# via
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.1.6
|
||||
|
@ -365,7 +58,6 @@ certifi==2022.12.7
|
|||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# python-telegram-bot
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
|
@ -373,15 +65,14 @@ certvalidator==0.11.1
|
|||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# pygit2
|
||||
# pynacl
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post2
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -401,11 +92,7 @@ croniter==0.3.29 ; sys_platform != "win32"
|
|||
cryptography==39.0.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# ansible-core
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
|
@ -460,8 +147,6 @@ iniconfig==1.0.1
|
|||
# via pytest
|
||||
ipaddress==1.0.22
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
|
@ -523,101 +208,10 @@ msgpack==1.0.2
|
|||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.14
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.3
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
# yarl
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.0
|
||||
# via certvalidator
|
||||
packaging==22.0
|
||||
|
@ -665,9 +259,7 @@ pyiface==0.0.11
|
|||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via
|
||||
# adal
|
||||
# twilio
|
||||
# via twilio
|
||||
pymysql==1.0.2 ; python_version > "3.5"
|
||||
# via -r requirements/static/ci/linux.in
|
||||
pynacl==1.3.0
|
||||
|
@ -723,9 +315,6 @@ python-consul==1.1.0
|
|||
python-dateutil==2.8.1
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
|
@ -762,28 +351,17 @@ redis-py-cluster==2.1.3
|
|||
# via -r requirements/static/ci/linux.in
|
||||
redis==3.5.3
|
||||
# via redis-py-cluster
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# python-consul
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# twilio
|
||||
# vcert
|
||||
|
@ -813,7 +391,6 @@ six==1.16.0
|
|||
# genshi
|
||||
# geomet
|
||||
# google-auth
|
||||
# isodate
|
||||
# jsonschema
|
||||
# kazoo
|
||||
# kubernetes
|
||||
|
@ -844,8 +421,10 @@ timelib==0.2.5
|
|||
# via -r requirements/static/pkg/linux.in
|
||||
toml==0.10.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
tornado==6.1
|
||||
# via python-telegram-bot
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# python-telegram-bot
|
||||
twilio==7.9.2
|
||||
# via -r requirements/static/ci/linux.in
|
||||
typing-extensions==4.2.0
|
||||
|
|
10
requirements/static/ci/py3.11/windows-crypto.txt
Normal file
10
requirements/static/ci/py3.11/windows-crypto.txt
Normal file
|
@ -0,0 +1,10 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.11/windows-crypto.txt --pip-args='--constraint=requirements/static/ci/py3.11/windows.txt' requirements/static/ci/crypto.in
|
||||
#
|
||||
m2crypto==0.38.0
|
||||
# via -r requirements/static/ci/crypto.in
|
||||
pycryptodome==3.18.0
|
||||
# via -r requirements/static/ci/crypto.in
|
|
@ -49,10 +49,10 @@ cffi==1.14.6
|
|||
# clr-loader
|
||||
# cryptography
|
||||
# pygit2
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.1.1
|
||||
# via aiohttp
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post1
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
|
@ -320,7 +320,7 @@ pyzmq==25.0.2 ; sys_platform == "win32"
|
|||
# pytest-salt-factories
|
||||
requests-ntlm==1.1.0
|
||||
# via pywinrm
|
||||
requests==2.25.1
|
||||
requests==2.31.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
|
@ -377,6 +377,8 @@ timelib==0.2.5
|
|||
# via -r requirements/windows.txt
|
||||
toml==0.10.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
tornado==6.3.2 ; python_version >= "3.8"
|
||||
# via -r requirements/base.txt
|
||||
typing-extensions==4.4.0
|
||||
# via
|
||||
# pytest-shell-utilities
|
||||
|
|
|
@ -1,958 +0,0 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.7/cloud.txt --pip-args='--constraint=requirements/static/ci/py3.7/linux.txt' requirements/base.txt requirements/pytest.txt requirements/static/ci/cloud.in requirements/static/ci/common.in requirements/static/pkg/linux.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.7
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
# via aiohttp
|
||||
apache-libcloud==2.5.0 ; sys_platform != "win32"
|
||||
# via
|
||||
# -r requirements/static/ci/cloud.in
|
||||
# -r requirements/static/ci/common.in
|
||||
asn1crypto==1.4.0
|
||||
# via
|
||||
# certvalidator
|
||||
# oscrypto
|
||||
async-timeout==4.0.2
|
||||
# via aiohttp
|
||||
asynctest==0.13.0
|
||||
# via aiohttp
|
||||
attrs==21.2.0
|
||||
# via
|
||||
# aiohttp
|
||||
# jsonschema
|
||||
# pytest
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.27
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.52
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.2.0
|
||||
# via
|
||||
# paramiko
|
||||
# passlib
|
||||
boto3==1.21.46 ; python_version >= "3.6"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# moto
|
||||
boto==2.49.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
botocore==1.24.46
|
||||
# via
|
||||
# boto3
|
||||
# moto
|
||||
# s3transfer
|
||||
cachetools==4.2.2
|
||||
# via google-auth
|
||||
cassandra-driver==3.25.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
certifi==2022.12.7
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
# via vcert
|
||||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# napalm
|
||||
# pynacl
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
cheetah3==3.2.6.post1
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
# via cherrypy
|
||||
cherrypy==18.6.1
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# -r requirements/static/pkg/linux.in
|
||||
ciscoconfparse==1.5.46
|
||||
# via napalm
|
||||
click==8.0.1
|
||||
# via geomet
|
||||
clustershell==1.8.3
|
||||
# via -r requirements/static/ci/common.in
|
||||
colorama==0.4.4
|
||||
# via ciscoconfparse
|
||||
contextvars==2.4
|
||||
# via -r requirements/base.txt
|
||||
croniter==1.0.15 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
cryptography==39.0.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
# pyopenssl
|
||||
# pyspnego
|
||||
# requests-ntlm
|
||||
# smbprotocol
|
||||
# vcert
|
||||
distlib==0.3.3
|
||||
# via virtualenv
|
||||
distro==1.6.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-skip-markers
|
||||
dnspython==2.1.0
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# ciscoconfparse
|
||||
# python-etcd
|
||||
docker==5.0.2
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# pytest-salt-factories
|
||||
etcd3-py==0.1.6 ; python_version >= "3.6"
|
||||
# via -r requirements/static/ci/common.in
|
||||
exceptiongroup==1.0.4
|
||||
# via pytest
|
||||
filelock==3.0.12
|
||||
# via virtualenv
|
||||
flaky==3.7.0
|
||||
# via -r requirements/pytest.txt
|
||||
frozenlist==1.3.0
|
||||
# via
|
||||
# aiohttp
|
||||
# aiosignal
|
||||
future==0.18.3
|
||||
# via
|
||||
# napalm
|
||||
# textfsm
|
||||
genshi==0.7.5
|
||||
# via -r requirements/static/ci/common.in
|
||||
geomet==0.2.1.post1
|
||||
# via cassandra-driver
|
||||
gitdb==4.0.7
|
||||
# via gitpython
|
||||
gitpython==3.1.30 ; python_version >= "3.7"
|
||||
# via -r requirements/static/ci/common.in
|
||||
google-auth==2.1.0
|
||||
# via kubernetes
|
||||
idna==2.8
|
||||
# via
|
||||
# etcd3-py
|
||||
# requests
|
||||
# yarl
|
||||
immutables==0.16
|
||||
# via contextvars
|
||||
importlib-metadata==4.8.1
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# backports.entry-points-selectable
|
||||
# click
|
||||
# jsonschema
|
||||
# mako
|
||||
# moto
|
||||
# pluggy
|
||||
# pytest
|
||||
# virtualenv
|
||||
iniconfig==1.1.1
|
||||
# via pytest
|
||||
ipaddress==1.0.23
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
# via cherrypy
|
||||
jaraco.functools==3.3.0
|
||||
# via
|
||||
# cheroot
|
||||
# jaraco.text
|
||||
# tempora
|
||||
jaraco.text==3.5.1
|
||||
# via jaraco.collections
|
||||
jinja2==3.1.2
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# junos-eznc
|
||||
# moto
|
||||
# napalm
|
||||
jmespath==0.10.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# boto3
|
||||
# botocore
|
||||
jsonschema==3.2.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
junos-eznc==2.4.0 ; sys_platform != "win32" and python_version <= "3.10"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# napalm
|
||||
jxmlease==1.0.3 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
kazoo==2.8.0 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via -r requirements/static/ci/common.in
|
||||
keyring==5.7.1
|
||||
# via -r requirements/static/ci/common.in
|
||||
kubernetes==3.0.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
libnacl==1.8.0 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via -r requirements/static/ci/common.in
|
||||
loguru==0.6.0
|
||||
# via ciscoconfparse
|
||||
looseversion==1.0.2
|
||||
# via -r requirements/base.txt
|
||||
lxml==4.9.1
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# ncclient
|
||||
mako==1.2.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
markupsafe==2.1.2
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# jinja2
|
||||
# mako
|
||||
# moto
|
||||
# werkzeug
|
||||
mock==4.0.3
|
||||
# via -r requirements/pytest.txt
|
||||
more-itertools==8.8.0
|
||||
# via
|
||||
# cheroot
|
||||
# cherrypy
|
||||
# jaraco.classes
|
||||
# jaraco.functools
|
||||
moto==3.0.1 ; python_version >= "3.6"
|
||||
# via -r requirements/static/ci/common.in
|
||||
msgpack==1.0.2
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.21
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
# yarl
|
||||
napalm==3.3.1 ; sys_platform != "win32" and python_version > "3.6" and python_version < "3.10"
|
||||
# via -r requirements/static/ci/common.in
|
||||
ncclient==0.6.12
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
netaddr==0.7.19
|
||||
# via
|
||||
# -r requirements/static/ci/cloud.in
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# pyeapi
|
||||
netmiko==3.4.0
|
||||
# via napalm
|
||||
ntc-templates==2.3.2
|
||||
# via
|
||||
# junos-eznc
|
||||
# netmiko
|
||||
ntlm-auth==1.3.0
|
||||
# via requests-ntlm
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.1
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest
|
||||
paramiko==2.10.1 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# ncclient
|
||||
# netmiko
|
||||
# scp
|
||||
passlib[bcrypt]==1.7.4
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# ciscoconfparse
|
||||
platformdirs==2.3.0
|
||||
# via virtualenv
|
||||
pluggy==1.0.0
|
||||
# via pytest
|
||||
portend==2.7.1
|
||||
# via cherrypy
|
||||
profitbricks==4.1.3
|
||||
# via -r requirements/static/ci/cloud.in
|
||||
psutil==5.8.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
# pytest-system-statistics
|
||||
pyasn1-modules==0.2.8
|
||||
# via google-auth
|
||||
pyasn1==0.4.8
|
||||
# via
|
||||
# pyasn1-modules
|
||||
# rsa
|
||||
pycparser==2.19
|
||||
# via cffi
|
||||
pycryptodomex==3.10.1
|
||||
# via -r requirements/crypto.txt
|
||||
pyeapi==0.8.4
|
||||
# via napalm
|
||||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via adal
|
||||
pynacl==1.4.0
|
||||
# via paramiko
|
||||
pyopenssl==23.0.0
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# etcd3-py
|
||||
pyparsing==3.0.9
|
||||
# via
|
||||
# junos-eznc
|
||||
# packaging
|
||||
pypsexec==0.1.0
|
||||
# via -r requirements/static/ci/cloud.in
|
||||
pyrsistent==0.18.0
|
||||
# via jsonschema
|
||||
pyserial==3.5
|
||||
# via
|
||||
# junos-eznc
|
||||
# netmiko
|
||||
pyspnego==0.8.0
|
||||
# via
|
||||
# -r requirements/static/ci/cloud.in
|
||||
# smbprotocol
|
||||
pytest-custom-exit-code==0.3.0
|
||||
# via -r requirements/pytest.txt
|
||||
pytest-helpers-namespace==2021.4.29
|
||||
# via
|
||||
# -r requirements/pytest.txt
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
pytest-httpserver==1.0.4
|
||||
# via -r requirements/pytest.txt
|
||||
pytest-salt-factories[docker]==1.0.0rc21 ; sys_platform != "win32"
|
||||
# via -r requirements/pytest.txt
|
||||
pytest-shell-utilities==1.6.0
|
||||
# via pytest-salt-factories
|
||||
pytest-skip-markers==1.2.0
|
||||
# via
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
# pytest-system-statistics
|
||||
pytest-subtests==0.5.0
|
||||
# via -r requirements/pytest.txt
|
||||
pytest-system-statistics==1.0.2
|
||||
# via pytest-salt-factories
|
||||
pytest-tempdir==2019.10.12
|
||||
# via
|
||||
# -r requirements/pytest.txt
|
||||
# pytest-salt-factories
|
||||
pytest-timeout==2.0.2
|
||||
# via -r requirements/pytest.txt
|
||||
pytest==7.2.0 ; python_version > "3.6"
|
||||
# via
|
||||
# -r requirements/pytest.txt
|
||||
# pytest-custom-exit-code
|
||||
# pytest-helpers-namespace
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-subtests
|
||||
# pytest-system-statistics
|
||||
# pytest-tempdir
|
||||
# pytest-timeout
|
||||
python-dateutil==2.8.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
# moto
|
||||
# vcert
|
||||
python-etcd==0.4.5
|
||||
# via -r requirements/static/ci/common.in
|
||||
python-gnupg==0.4.8
|
||||
# via -r requirements/static/pkg/linux.in
|
||||
pytz==2022.1
|
||||
# via
|
||||
# moto
|
||||
# tempora
|
||||
pyvmomi==7.0.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
pywinrm==0.3.0
|
||||
# via -r requirements/static/ci/cloud.in
|
||||
pyyaml==5.4.1
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# clustershell
|
||||
# junos-eznc
|
||||
# kubernetes
|
||||
# napalm
|
||||
# yamlordereddictloader
|
||||
pyzmq==23.2.0 ; python_version < "3.11"
|
||||
# via
|
||||
# -r requirements/zeromq.txt
|
||||
# pytest-salt-factories
|
||||
requests-ntlm==1.1.0
|
||||
# via pywinrm
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# napalm
|
||||
# profitbricks
|
||||
# pyvmomi
|
||||
# pywinrm
|
||||
# requests-ntlm
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# vcert
|
||||
responses==0.14.0
|
||||
# via moto
|
||||
rfc3987==1.3.8
|
||||
# via -r requirements/static/ci/common.in
|
||||
rpm-vercmp==0.1.2
|
||||
# via -r requirements/static/pkg/linux.in
|
||||
rsa==4.7.2
|
||||
# via google-auth
|
||||
s3transfer==0.5.0
|
||||
# via boto3
|
||||
scp==0.14.1
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# netmiko
|
||||
semantic-version==2.9.0
|
||||
# via etcd3-py
|
||||
setproctitle==1.3.2
|
||||
# via -r requirements/static/pkg/linux.in
|
||||
six==1.16.0
|
||||
# via
|
||||
# bcrypt
|
||||
# cassandra-driver
|
||||
# cheroot
|
||||
# etcd3-py
|
||||
# genshi
|
||||
# geomet
|
||||
# isodate
|
||||
# jsonschema
|
||||
# junos-eznc
|
||||
# kazoo
|
||||
# kubernetes
|
||||
# msrestazure
|
||||
# ncclient
|
||||
# paramiko
|
||||
# profitbricks
|
||||
# pynacl
|
||||
# pypsexec
|
||||
# python-dateutil
|
||||
# pyvmomi
|
||||
# pywinrm
|
||||
# responses
|
||||
# textfsm
|
||||
# transitions
|
||||
# vcert
|
||||
# virtualenv
|
||||
# websocket-client
|
||||
smbprotocol==1.10.1
|
||||
# via
|
||||
# -r requirements/static/ci/cloud.in
|
||||
# pypsexec
|
||||
smmap==4.0.0
|
||||
# via gitdb
|
||||
sqlparse==0.4.4
|
||||
# via -r requirements/static/ci/common.in
|
||||
strict-rfc3339==0.7
|
||||
# via -r requirements/static/ci/common.in
|
||||
tempora==4.1.1
|
||||
# via portend
|
||||
tenacity==8.0.1
|
||||
# via netmiko
|
||||
textfsm==1.1.2
|
||||
# via
|
||||
# napalm
|
||||
# ntc-templates
|
||||
timelib==0.2.5
|
||||
# via -r requirements/static/pkg/linux.in
|
||||
toml==0.10.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
transitions==0.8.9
|
||||
# via junos-eznc
|
||||
typing-extensions==3.10.0.0
|
||||
# via
|
||||
# aiohttp
|
||||
# async-timeout
|
||||
# gitpython
|
||||
# immutables
|
||||
# importlib-metadata
|
||||
# pytest-shell-utilities
|
||||
# pytest-system-statistics
|
||||
# yarl
|
||||
urllib3==1.26.6
|
||||
# via
|
||||
# botocore
|
||||
# kubernetes
|
||||
# python-etcd
|
||||
# requests
|
||||
# responses
|
||||
vcert==0.7.4 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
virtualenv==20.8.0
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# pytest-salt-factories
|
||||
watchdog==2.1.5
|
||||
# via -r requirements/static/ci/common.in
|
||||
websocket-client==0.40.0
|
||||
# via
|
||||
# docker
|
||||
# kubernetes
|
||||
werkzeug==2.2.3
|
||||
# via
|
||||
# moto
|
||||
# pytest-httpserver
|
||||
xmltodict==0.12.0
|
||||
# via
|
||||
# moto
|
||||
# pywinrm
|
||||
yamlordereddictloader==0.4.0
|
||||
# via junos-eznc
|
||||
yarl==1.7.2
|
||||
# via aiohttp
|
||||
zc.lockfile==2.0
|
||||
# via cherrypy
|
||||
zipp==3.5.0
|
||||
# via importlib-metadata
|
||||
|
||||
# The following packages are considered to be unsafe in a requirements file:
|
||||
# setuptools
|
|
@ -1,210 +0,0 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.7/docs.txt requirements/base.txt requirements/static/ci/docs.in requirements/zeromq.txt
|
||||
#
|
||||
alabaster==0.7.12
|
||||
# via sphinx
|
||||
babel==2.9.1
|
||||
# via sphinx
|
||||
certifi==2022.12.7
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# requests
|
||||
chardet==3.0.4
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# requests
|
||||
cheroot==8.5.2
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# cherrypy
|
||||
cherrypy==18.6.1
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/static/ci/docs.in
|
||||
contextvars==2.4
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
distro==1.5.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
docutils==0.16
|
||||
# via sphinx
|
||||
idna==2.8
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# requests
|
||||
imagesize==1.2.0
|
||||
# via sphinx
|
||||
immutables==0.15
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# contextvars
|
||||
importlib-metadata==4.6.4
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# sphinxcontrib-spelling
|
||||
jaraco.classes==3.2.1
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# cherrypy
|
||||
jaraco.functools==2.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# cheroot
|
||||
# jaraco.text
|
||||
# tempora
|
||||
jaraco.text==3.5.1
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# jaraco.collections
|
||||
jinja2==3.1.2
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
# myst-docutils
|
||||
# sphinx
|
||||
jmespath==1.0.1
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
linkify-it-py==1.0.3
|
||||
# via myst-docutils
|
||||
looseversion==1.0.2
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
markdown-it-py==2.2.0
|
||||
# via
|
||||
# mdit-py-plugins
|
||||
# myst-docutils
|
||||
markupsafe==2.1.2
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
# jinja2
|
||||
mdit-py-plugins==0.3.3
|
||||
# via myst-docutils
|
||||
mdurl==0.1.2
|
||||
# via markdown-it-py
|
||||
more-itertools==5.0.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# cheroot
|
||||
# cherrypy
|
||||
# jaraco.classes
|
||||
# jaraco.functools
|
||||
msgpack==1.0.2
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
myst-docutils[linkify]==0.18.1
|
||||
# via -r requirements/static/ci/docs.in
|
||||
packaging==21.3
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
# sphinx
|
||||
portend==2.4
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# cherrypy
|
||||
psutil==5.8.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
pycryptodomex==3.9.8
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/crypto.txt
|
||||
pyenchant==3.2.2
|
||||
# via sphinxcontrib-spelling
|
||||
pygments==2.8.1
|
||||
# via sphinx
|
||||
pyparsing==3.0.9
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# packaging
|
||||
pytz==2022.1
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# babel
|
||||
# tempora
|
||||
pyyaml==5.4.1
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
# myst-docutils
|
||||
pyzmq==23.2.0 ; python_version < "3.11"
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/zeromq.txt
|
||||
requests==2.25.1
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# -r requirements/base.txt
|
||||
# sphinx
|
||||
six==1.16.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# cheroot
|
||||
# more-itertools
|
||||
# sphinxcontrib.httpdomain
|
||||
snowballstemmer==2.1.0
|
||||
# via sphinx
|
||||
sphinx==3.5.2 ; python_version < "3.9"
|
||||
# via
|
||||
# -r requirements/static/ci/docs.in
|
||||
# sphinxcontrib-spelling
|
||||
# sphinxcontrib.httpdomain
|
||||
sphinxcontrib-applehelp==1.0.2
|
||||
# via sphinx
|
||||
sphinxcontrib-devhelp==1.0.2
|
||||
# via sphinx
|
||||
sphinxcontrib-htmlhelp==1.0.3
|
||||
# via sphinx
|
||||
sphinxcontrib-jsmath==1.0.1
|
||||
# via sphinx
|
||||
sphinxcontrib-qthelp==1.0.3
|
||||
# via sphinx
|
||||
sphinxcontrib-serializinghtml==1.1.4
|
||||
# via sphinx
|
||||
sphinxcontrib-spelling==7.7.0
|
||||
# via -r requirements/static/ci/docs.in
|
||||
sphinxcontrib.httpdomain==1.8.1
|
||||
# via -r requirements/static/ci/docs.in
|
||||
tempora==4.1.1
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# portend
|
||||
typing-extensions==3.10.0.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# importlib-metadata
|
||||
# markdown-it-py
|
||||
# myst-docutils
|
||||
uc-micro-py==1.0.1
|
||||
# via linkify-it-py
|
||||
urllib3==1.26.6
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# requests
|
||||
zc.lockfile==1.4
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# cherrypy
|
||||
zipp==3.5.0
|
||||
# via
|
||||
# -c requirements/static/ci/py3.7/linux.txt
|
||||
# importlib-metadata
|
||||
|
||||
# The following packages are considered to be unsafe in a requirements file:
|
||||
# setuptools
|
|
@ -1,10 +0,0 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.7/freebsd-crypto.txt --pip-args='--constraint=requirements/static/ci/py3.7/freebsd.txt' requirements/static/ci/crypto.in
|
||||
#
|
||||
m2crypto==0.38.0
|
||||
# via -r requirements/static/ci/crypto.in
|
||||
pycryptodome==3.9.7
|
||||
# via -r requirements/static/ci/crypto.in
|
|
@ -1,933 +0,0 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.7/freebsd.txt --pip-args='--constraint=requirements/static/pkg/py3.7/freebsd.txt' requirements/base.txt requirements/pytest.txt requirements/static/ci/common.in requirements/static/ci/freebsd.in requirements/static/pkg/freebsd.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.5
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
# via aiohttp
|
||||
apache-libcloud==2.5.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
asn1crypto==1.3.0
|
||||
# via
|
||||
# certvalidator
|
||||
# oscrypto
|
||||
async-timeout==4.0.2
|
||||
# via aiohttp
|
||||
asynctest==0.13.0
|
||||
# via aiohttp
|
||||
attrs==20.3.0
|
||||
# via
|
||||
# aiohttp
|
||||
# jsonschema
|
||||
# pytest
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-system-statistics
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.26
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.51
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
bcrypt==3.1.6
|
||||
# via
|
||||
# paramiko
|
||||
# passlib
|
||||
boto3==1.21.46 ; python_version >= "3.6"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# moto
|
||||
boto==2.49.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
botocore==1.24.46
|
||||
# via
|
||||
# boto3
|
||||
# moto
|
||||
# s3transfer
|
||||
cachetools==3.1.0
|
||||
# via google-auth
|
||||
cassandra-driver==3.24.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
certifi==2022.12.7
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
# via vcert
|
||||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# napalm
|
||||
# pygit2
|
||||
# pynacl
|
||||
chardet==3.0.4
|
||||
# via requests
|
||||
charset-normalizer==2.0.12
|
||||
# via aiohttp
|
||||
cheetah3==3.2.6.post2
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
# via cherrypy
|
||||
cherrypy==18.6.1
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# -r requirements/static/pkg/freebsd.in
|
||||
ciscoconfparse==1.5.19
|
||||
# via napalm
|
||||
click==7.1.2
|
||||
# via geomet
|
||||
clustershell==1.8.3
|
||||
# via -r requirements/static/ci/common.in
|
||||
colorama==0.4.3
|
||||
# via ciscoconfparse
|
||||
contextvars==2.4
|
||||
# via -r requirements/base.txt
|
||||
croniter==0.3.29 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
cryptography==39.0.2
|
||||
# via
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
# pyopenssl
|
||||
# vcert
|
||||
distlib==0.3.2
|
||||
# via virtualenv
|
||||
distro==1.5.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/pkg/freebsd.in
|
||||
# pytest-skip-markers
|
||||
dnspython==1.16.0
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# ciscoconfparse
|
||||
# python-etcd
|
||||
docker==5.0.3
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# pytest-salt-factories
|
||||
etcd3-py==0.1.6 ; python_version >= "3.6"
|
||||
# via -r requirements/static/ci/common.in
|
||||
exceptiongroup==1.0.4
|
||||
# via pytest
|
||||
filelock==3.0.12
|
||||
# via virtualenv
|
||||
flaky==3.7.0
|
||||
# via -r requirements/pytest.txt
|
||||
frozenlist==1.3.0
|
||||
# via
|
||||
# aiohttp
|
||||
# aiosignal
|
||||
future==0.18.3
|
||||
# via
|
||||
# napalm
|
||||
# textfsm
|
||||
genshi==0.7.5
|
||||
# via -r requirements/static/ci/common.in
|
||||
geomet==0.2.1.post1
|
||||
# via cassandra-driver
|
||||
gitdb==4.0.5
|
||||
# via gitpython
|
||||
gitpython==3.1.30 ; python_version >= "3.7"
|
||||
# via -r requirements/static/ci/common.in
|
||||
google-auth==1.6.3
|
||||
# via kubernetes
|
||||
hglib==2.6.1
|
||||
# via -r requirements/static/ci/freebsd.in
|
||||
idna==2.8
|
||||
# via
|
||||
# etcd3-py
|
||||
# requests
|
||||
# yarl
|
||||
immutables==0.15
|
||||
# via contextvars
|
||||
importlib-metadata==4.6.4
|
||||
# via
|
||||
# -r requirements/static/pkg/freebsd.in
|
||||
# backports.entry-points-selectable
|
||||
# jsonschema
|
||||
# mako
|
||||
# moto
|
||||
# pluggy
|
||||
# pytest
|
||||
# virtualenv
|
||||
iniconfig==1.0.1
|
||||
# via pytest
|
||||
ipaddress==1.0.22
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
# via cherrypy
|
||||
jaraco.functools==2.0
|
||||
# via
|
||||
# cheroot
|
||||
# jaraco.text
|
||||
# tempora
|
||||
jaraco.text==3.5.1
|
||||
# via jaraco.collections
|
||||
jinja2==3.1.2
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# junos-eznc
|
||||
# moto
|
||||
# napalm
|
||||
jmespath==1.0.1
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# boto3
|
||||
# botocore
|
||||
jsonschema==3.2.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
junos-eznc==2.4.0 ; sys_platform != "win32" and python_version <= "3.10"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# napalm
|
||||
jxmlease==1.0.1 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
kazoo==2.6.1 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via -r requirements/static/ci/common.in
|
||||
keyring==5.7.1
|
||||
# via -r requirements/static/ci/common.in
|
||||
kubernetes==3.0.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
libnacl==1.7.1 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via -r requirements/static/ci/common.in
|
||||
looseversion==1.0.2
|
||||
# via -r requirements/base.txt
|
||||
lxml==4.9.1
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# ncclient
|
||||
mako==1.2.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
markupsafe==2.1.2
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# jinja2
|
||||
# mako
|
||||
# moto
|
||||
# werkzeug
|
||||
mercurial==6.0.1
|
||||
# via -r requirements/static/ci/freebsd.in
|
||||
mock==3.0.5
|
||||
# via -r requirements/pytest.txt
|
||||
more-itertools==5.0.0
|
||||
# via
|
||||
# cheroot
|
||||
# cherrypy
|
||||
# jaraco.classes
|
||||
# jaraco.functools
|
||||
moto==3.0.1 ; python_version >= "3.6"
|
||||
# via -r requirements/static/ci/common.in
|
||||
msgpack==1.0.2
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
msrest==0.6.19
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
# yarl
|
||||
napalm==3.1.0 ; sys_platform != "win32" and python_version > "3.6" and python_version < "3.10"
|
||||
# via -r requirements/static/ci/common.in
|
||||
ncclient==0.6.4
|
||||
# via junos-eznc
|
||||
netaddr==0.7.19
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# pyeapi
|
||||
netmiko==3.2.0
|
||||
# via napalm
|
||||
ntc-templates==1.4.0
|
||||
# via junos-eznc
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.0
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest
|
||||
paramiko==2.10.1 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# ncclient
|
||||
# netmiko
|
||||
# scp
|
||||
passlib[bcrypt]==1.7.4
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# ciscoconfparse
|
||||
pathspec==0.9.0
|
||||
# via yamllint
|
||||
pathtools==0.1.2
|
||||
# via watchdog
|
||||
platformdirs==2.2.0
|
||||
# via virtualenv
|
||||
pluggy==0.13.0
|
||||
# via pytest
|
||||
portend==2.4
|
||||
# via cherrypy
|
||||
psutil==5.8.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
# pytest-system-statistics
|
||||
pyasn1-modules==0.2.4
|
||||
# via google-auth
|
||||
pyasn1==0.4.8
|
||||
# via
|
||||
# pyasn1-modules
|
||||
# rsa
|
||||
pycparser==2.17
|
||||
# via cffi
|
||||
pycryptodomex==3.9.8
|
||||
# via -r requirements/crypto.txt
|
||||
pyeapi==0.8.3
|
||||
# via napalm
|
||||
pygit2==1.8.0 ; python_version >= "3.7"
|
||||
# via -r requirements/static/ci/freebsd.in
|
||||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via adal
|
||||
pynacl==1.3.0
|
||||
# via paramiko
|
||||
pyopenssl==23.0.0
|
||||
# via
|
||||
# -r requirements/static/pkg/freebsd.in
|
||||
# etcd3-py
|
||||
pyparsing==3.0.9
|
||||
# via
|
||||
# junos-eznc
|
||||
# packaging
|
||||
pyrsistent==0.17.3
|
||||
# via jsonschema
|
||||
pyserial==3.4
|
||||
# via
|
||||
# junos-eznc
|
||||
# netmiko
|
||||
pytest-custom-exit-code==0.3.0
|
||||
# via -r requirements/pytest.txt
|
||||
pytest-helpers-namespace==2021.4.29
|
||||
# via
|
||||
# -r requirements/pytest.txt
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
pytest-httpserver==1.0.4
|
||||
# via -r requirements/pytest.txt
|
||||
pytest-salt-factories[docker]==1.0.0rc21 ; sys_platform != "win32"
|
||||
# via -r requirements/pytest.txt
|
||||
pytest-shell-utilities==1.6.0
|
||||
# via pytest-salt-factories
|
||||
pytest-skip-markers==1.2.0
|
||||
# via
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
# pytest-system-statistics
|
||||
pytest-subtests==0.4.0
|
||||
# via -r requirements/pytest.txt
|
||||
pytest-system-statistics==1.0.2
|
||||
# via pytest-salt-factories
|
||||
pytest-tempdir==2019.10.12
|
||||
# via
|
||||
# -r requirements/pytest.txt
|
||||
# pytest-salt-factories
|
||||
pytest-timeout==1.4.2
|
||||
# via -r requirements/pytest.txt
|
||||
pytest==7.2.0 ; python_version > "3.6"
|
||||
# via
|
||||
# -r requirements/pytest.txt
|
||||
# pytest-custom-exit-code
|
||||
# pytest-helpers-namespace
|
||||
# pytest-salt-factories
|
||||
# pytest-shell-utilities
|
||||
# pytest-skip-markers
|
||||
# pytest-subtests
|
||||
# pytest-system-statistics
|
||||
# pytest-tempdir
|
||||
# pytest-timeout
|
||||
python-dateutil==2.8.1
|
||||
# via
|
||||
# -r requirements/static/pkg/freebsd.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
# moto
|
||||
# vcert
|
||||
python-etcd==0.4.5
|
||||
# via -r requirements/static/ci/common.in
|
||||
python-gnupg==0.4.8
|
||||
# via -r requirements/static/pkg/freebsd.in
|
||||
pytz==2022.1
|
||||
# via
|
||||
# moto
|
||||
# tempora
|
||||
pyvmomi==6.7.1.2018.12
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyyaml==5.4.1
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# clustershell
|
||||
# junos-eznc
|
||||
# kubernetes
|
||||
# napalm
|
||||
# yamllint
|
||||
# yamlordereddictloader
|
||||
pyzmq==23.2.0 ; python_version < "3.11"
|
||||
# via
|
||||
# -r requirements/zeromq.txt
|
||||
# pytest-salt-factories
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.25.1
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# napalm
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# vcert
|
||||
responses==0.10.6
|
||||
# via moto
|
||||
rfc3987==1.3.8
|
||||
# via -r requirements/static/ci/common.in
|
||||
rsa==4.7.2
|
||||
# via google-auth
|
||||
s3transfer==0.5.2
|
||||
# via boto3
|
||||
scp==0.13.2
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# netmiko
|
||||
semantic-version==2.9.0
|
||||
# via etcd3-py
|
||||
setproctitle==1.3.2
|
||||
# via -r requirements/static/pkg/freebsd.in
|
||||
six==1.16.0
|
||||
# via
|
||||
# bcrypt
|
||||
# cassandra-driver
|
||||
# cheroot
|
||||
# etcd3-py
|
||||
# genshi
|
||||
# geomet
|
||||
# google-auth
|
||||
# isodate
|
||||
# jsonschema
|
||||
# junos-eznc
|
||||
# kazoo
|
||||
# kubernetes
|
||||
# mock
|
||||
# more-itertools
|
||||
# msrestazure
|
||||
# ncclient
|
||||
# paramiko
|
||||
# pynacl
|
||||
# python-dateutil
|
||||
# pyvmomi
|
||||
# responses
|
||||
# textfsm
|
||||
# transitions
|
||||
# vcert
|
||||
# virtualenv
|
||||
# websocket-client
|
||||
smmap==3.0.4
|
||||
# via gitdb
|
||||
sqlparse==0.4.4
|
||||
# via -r requirements/static/ci/common.in
|
||||
strict-rfc3339==0.7
|
||||
# via -r requirements/static/ci/common.in
|
||||
tempora==4.1.1
|
||||
# via portend
|
||||
terminal==0.4.0
|
||||
# via ntc-templates
|
||||
textfsm==1.1.0
|
||||
# via
|
||||
# napalm
|
||||
# netmiko
|
||||
# ntc-templates
|
||||
timelib==0.2.5
|
||||
# via -r requirements/static/pkg/freebsd.in
|
||||
toml==0.10.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
tomli==2.0.1
|
||||
# via pytest
|
||||
transitions==0.8.1
|
||||
# via junos-eznc
|
||||
typing-extensions==3.10.0.0
|
||||
# via
|
||||
# aiohttp
|
||||
# async-timeout
|
||||
# gitpython
|
||||
# importlib-metadata
|
||||
# pytest-shell-utilities
|
||||
# pytest-system-statistics
|
||||
# yarl
|
||||
urllib3==1.26.6
|
||||
# via
|
||||
# botocore
|
||||
# kubernetes
|
||||
# python-etcd
|
||||
# requests
|
||||
vcert==0.7.4 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
virtualenv==20.7.2
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# pytest-salt-factories
|
||||
watchdog==0.10.3
|
||||
# via -r requirements/static/ci/common.in
|
||||
websocket-client==0.40.0
|
||||
# via
|
||||
# docker
|
||||
# kubernetes
|
||||
werkzeug==2.2.3
|
||||
# via
|
||||
# moto
|
||||
# pytest-httpserver
|
||||
xmltodict==0.12.0
|
||||
# via moto
|
||||
yamllint==1.26.3
|
||||
# via -r requirements/static/ci/freebsd.in
|
||||
yamlordereddictloader==0.4.0
|
||||
# via junos-eznc
|
||||
yarl==1.7.2
|
||||
# via aiohttp
|
||||
zc.lockfile==1.4
|
||||
# via cherrypy
|
||||
zipp==3.5.0
|
||||
# via importlib-metadata
|
||||
|
||||
# The following packages are considered to be unsafe in a requirements file:
|
||||
# setuptools
|
|
@ -1,14 +0,0 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.7/invoke.txt --pip-args='--constraint=requirements/static/ci/py3.7/linux.txt' requirements/static/ci/invoke.in
|
||||
#
|
||||
blessings==1.7
|
||||
# via -r requirements/static/ci/invoke.in
|
||||
invoke==1.4.1
|
||||
# via -r requirements/static/ci/invoke.in
|
||||
pyyaml==5.4.1
|
||||
# via -r requirements/static/ci/invoke.in
|
||||
six==1.16.0
|
||||
# via blessings
|
|
@ -1,933 +0,0 @@
|
|||
#
|
||||
# This file is autogenerated by pip-compile
|
||||
# To update, run:
|
||||
#
|
||||
# pip-compile --output-file=requirements/static/ci/py3.7/lint.txt --pip-args='--constraint=requirements/static/ci/py3.7/linux.txt' requirements/base.txt requirements/static/ci/common.in requirements/static/ci/lint.in requirements/static/ci/linux.in requirements/static/pkg/linux.in requirements/zeromq.txt
|
||||
#
|
||||
adal==1.2.7
|
||||
# via
|
||||
# azure-datalake-store
|
||||
# msrestazure
|
||||
aiohttp==3.8.1
|
||||
# via etcd3-py
|
||||
aiosignal==1.2.0
|
||||
# via aiohttp
|
||||
ansible-core==2.11.4
|
||||
# via ansible
|
||||
ansible==4.4.0 ; python_version < "3.9"
|
||||
# via -r requirements/static/ci/linux.in
|
||||
apache-libcloud==3.3.1 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
apscheduler==3.6.3
|
||||
# via python-telegram-bot
|
||||
asn1crypto==1.4.0
|
||||
# via
|
||||
# certvalidator
|
||||
# oscrypto
|
||||
astroid==2.3.3
|
||||
# via pylint
|
||||
async-timeout==4.0.2
|
||||
# via aiohttp
|
||||
asynctest==0.13.0
|
||||
# via aiohttp
|
||||
attrs==21.2.0
|
||||
# via
|
||||
# aiohttp
|
||||
# jsonschema
|
||||
azure-applicationinsights==0.1.0
|
||||
# via azure
|
||||
azure-batch==4.1.3
|
||||
# via azure
|
||||
azure-common==1.1.27
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-table
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-blob
|
||||
# azure-storage-common
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-cosmosdb-nspkg==2.0.2
|
||||
# via azure-cosmosdb-table
|
||||
azure-cosmosdb-table==1.0.6
|
||||
# via azure
|
||||
azure-datalake-store==0.0.52
|
||||
# via azure
|
||||
azure-eventgrid==1.3.0
|
||||
# via azure
|
||||
azure-graphrbac==0.40.0
|
||||
# via azure
|
||||
azure-keyvault==1.1.0
|
||||
# via azure
|
||||
azure-loganalytics==0.1.0
|
||||
# via azure
|
||||
azure-mgmt-advisor==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-applicationinsights==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-authorization==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batch==5.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-batchai==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-billing==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cdn==3.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cognitiveservices==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-commerce==1.0.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-compute==4.6.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-consumption==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerinstance==1.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerregistry==2.8.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-cosmosdb==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datafactory==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-analytics==0.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datalake-nspkg==3.0.1
|
||||
# via
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
azure-mgmt-datalake-store==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-datamigration==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devspaces==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-devtestlabs==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-dns==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventgrid==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-eventhub==2.6.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-hanaonazure==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iotcentral==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothub==0.5.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-iothubprovisioningservices==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-logic==3.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-machinelearningcompute==0.4.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementgroups==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-managementpartner==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-maps==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-media==1.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-monitor==0.5.2
|
||||
# via azure-mgmt
|
||||
azure-mgmt-msi==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-network==2.7.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-notificationhubs==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-nspkg==3.0.2
|
||||
# via
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-nspkg
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
azure-mgmt-policyinsights==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-powerbiembedded==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-rdbms==1.9.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservices==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-recoveryservicesbackup==0.3.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-redis==5.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-relay==0.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-reservations==0.2.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-resource==2.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-scheduler==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-search==2.1.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
# via azure-mgmt
|
||||
azure-mgmt-servicefabric==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-signalr==0.1.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-sql==0.9.1
|
||||
# via azure-mgmt
|
||||
azure-mgmt-storage==2.0.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-subscription==0.2.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt-web==0.35.0
|
||||
# via azure-mgmt
|
||||
azure-mgmt==4.0.0
|
||||
# via azure
|
||||
azure-nspkg==3.0.2
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-batch
|
||||
# azure-cosmosdb-nspkg
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-nspkg
|
||||
# azure-servicebus
|
||||
# azure-servicefabric
|
||||
# azure-servicemanagement-legacy
|
||||
azure-servicebus==0.21.1
|
||||
# via azure
|
||||
azure-servicefabric==6.3.0.0
|
||||
# via azure
|
||||
azure-servicemanagement-legacy==0.20.7
|
||||
# via azure
|
||||
azure-storage-blob==1.5.0
|
||||
# via azure
|
||||
azure-storage-common==1.4.2
|
||||
# via
|
||||
# azure-storage-blob
|
||||
# azure-storage-file
|
||||
# azure-storage-queue
|
||||
azure-storage-file==1.4.0
|
||||
# via azure
|
||||
azure-storage-queue==1.4.0
|
||||
# via azure
|
||||
azure==4.0.0 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
backports.entry-points-selectable==1.1.0
|
||||
# via virtualenv
|
||||
backports.zoneinfo==0.2.1
|
||||
# via tzlocal
|
||||
bcrypt==3.2.0
|
||||
# via
|
||||
# paramiko
|
||||
# passlib
|
||||
boto3==1.21.46 ; python_version >= "3.6"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# moto
|
||||
boto==2.49.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
botocore==1.24.46
|
||||
# via
|
||||
# boto3
|
||||
# moto
|
||||
# s3transfer
|
||||
cachetools==4.2.2
|
||||
# via
|
||||
# google-auth
|
||||
# python-telegram-bot
|
||||
cassandra-driver==3.25.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
certifi==2022.12.7
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# kubernetes
|
||||
# msrest
|
||||
# python-telegram-bot
|
||||
# requests
|
||||
certvalidator==0.11.1
|
||||
# via vcert
|
||||
cffi==1.14.6
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# azure-datalake-store
|
||||
# bcrypt
|
||||
# cryptography
|
||||
# napalm
|
||||
# pygit2
|
||||
# pynacl
|
||||
charset-normalizer==2.0.4
|
||||
# via
|
||||
# aiohttp
|
||||
# requests
|
||||
cheetah3==3.2.6.post1
|
||||
# via -r requirements/static/ci/common.in
|
||||
cheroot==8.5.2
|
||||
# via cherrypy
|
||||
cherrypy==18.6.1
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# -r requirements/static/pkg/linux.in
|
||||
ciscoconfparse==1.5.46
|
||||
# via napalm
|
||||
click==8.0.1
|
||||
# via geomet
|
||||
clustershell==1.8.3
|
||||
# via -r requirements/static/ci/common.in
|
||||
colorama==0.4.4
|
||||
# via ciscoconfparse
|
||||
contextvars==2.4
|
||||
# via -r requirements/base.txt
|
||||
croniter==1.0.15 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
cryptography==39.0.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# ansible-core
|
||||
# azure-cosmosdb-table
|
||||
# azure-keyvault
|
||||
# azure-storage-common
|
||||
# etcd3-py
|
||||
# moto
|
||||
# paramiko
|
||||
# pyopenssl
|
||||
# vcert
|
||||
distlib==0.3.2
|
||||
# via virtualenv
|
||||
distro==1.6.0
|
||||
# via -r requirements/base.txt
|
||||
dnspython==2.1.0
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# ciscoconfparse
|
||||
# python-etcd
|
||||
docker==5.0.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
etcd3-py==0.1.6 ; python_version >= "3.6"
|
||||
# via -r requirements/static/ci/common.in
|
||||
filelock==3.0.12
|
||||
# via virtualenv
|
||||
frozenlist==1.3.0
|
||||
# via
|
||||
# aiohttp
|
||||
# aiosignal
|
||||
future==0.18.3
|
||||
# via
|
||||
# napalm
|
||||
# textfsm
|
||||
genshi==0.7.5
|
||||
# via -r requirements/static/ci/common.in
|
||||
geomet==0.2.1.post1
|
||||
# via cassandra-driver
|
||||
gitdb==4.0.7
|
||||
# via gitpython
|
||||
gitpython==3.1.30 ; python_version >= "3.7"
|
||||
# via -r requirements/static/ci/common.in
|
||||
google-auth==2.0.1
|
||||
# via kubernetes
|
||||
hglib==2.6.1
|
||||
# via -r requirements/static/ci/linux.in
|
||||
idna==3.2
|
||||
# via
|
||||
# etcd3-py
|
||||
# requests
|
||||
# yarl
|
||||
immutables==0.16
|
||||
# via contextvars
|
||||
importlib-metadata==4.6.4
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# backports.entry-points-selectable
|
||||
# click
|
||||
# jsonschema
|
||||
# mako
|
||||
# moto
|
||||
# virtualenv
|
||||
ipaddress==1.0.23
|
||||
# via kubernetes
|
||||
isodate==0.6.0
|
||||
# via msrest
|
||||
isort==4.3.21
|
||||
# via pylint
|
||||
jaraco.classes==3.2.1
|
||||
# via jaraco.collections
|
||||
jaraco.collections==3.4.0
|
||||
# via cherrypy
|
||||
jaraco.functools==3.3.0
|
||||
# via
|
||||
# cheroot
|
||||
# jaraco.text
|
||||
# tempora
|
||||
jaraco.text==3.5.1
|
||||
# via jaraco.collections
|
||||
jinja2==3.1.2
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# ansible-core
|
||||
# junos-eznc
|
||||
# moto
|
||||
# napalm
|
||||
jmespath==0.10.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# boto3
|
||||
# botocore
|
||||
jsonschema==3.2.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
junos-eznc==2.4.0 ; sys_platform != "win32" and python_version <= "3.10"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# napalm
|
||||
jxmlease==1.0.3 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
kazoo==2.8.0 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via -r requirements/static/ci/common.in
|
||||
keyring==5.7.1
|
||||
# via -r requirements/static/ci/common.in
|
||||
kubernetes==3.0.0
|
||||
# via -r requirements/static/ci/common.in
|
||||
lazy-object-proxy==1.4.3
|
||||
# via astroid
|
||||
libnacl==1.8.0 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via -r requirements/static/ci/common.in
|
||||
loguru==0.6.0
|
||||
# via ciscoconfparse
|
||||
looseversion==1.0.2
|
||||
# via -r requirements/base.txt
|
||||
lxml==4.9.1
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# ncclient
|
||||
mako==1.2.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
markupsafe==2.1.2
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# jinja2
|
||||
# mako
|
||||
# moto
|
||||
# werkzeug
|
||||
mccabe==0.6.1
|
||||
# via pylint
|
||||
mercurial==6.0.1
|
||||
# via -r requirements/static/ci/linux.in
|
||||
modernize==0.5
|
||||
# via saltpylint
|
||||
more-itertools==8.8.0
|
||||
# via
|
||||
# cheroot
|
||||
# cherrypy
|
||||
# jaraco.classes
|
||||
# jaraco.functools
|
||||
moto==3.0.1 ; python_version >= "3.6"
|
||||
# via -r requirements/static/ci/common.in
|
||||
msgpack==1.0.2
|
||||
# via -r requirements/base.txt
|
||||
msrest==0.6.21
|
||||
# via
|
||||
# azure-applicationinsights
|
||||
# azure-eventgrid
|
||||
# azure-keyvault
|
||||
# azure-loganalytics
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-servicefabric
|
||||
# msrestazure
|
||||
msrestazure==0.6.4
|
||||
# via
|
||||
# azure-batch
|
||||
# azure-eventgrid
|
||||
# azure-graphrbac
|
||||
# azure-keyvault
|
||||
# azure-mgmt-advisor
|
||||
# azure-mgmt-applicationinsights
|
||||
# azure-mgmt-authorization
|
||||
# azure-mgmt-batch
|
||||
# azure-mgmt-batchai
|
||||
# azure-mgmt-billing
|
||||
# azure-mgmt-cdn
|
||||
# azure-mgmt-cognitiveservices
|
||||
# azure-mgmt-commerce
|
||||
# azure-mgmt-compute
|
||||
# azure-mgmt-consumption
|
||||
# azure-mgmt-containerinstance
|
||||
# azure-mgmt-containerregistry
|
||||
# azure-mgmt-containerservice
|
||||
# azure-mgmt-cosmosdb
|
||||
# azure-mgmt-datafactory
|
||||
# azure-mgmt-datalake-analytics
|
||||
# azure-mgmt-datalake-store
|
||||
# azure-mgmt-datamigration
|
||||
# azure-mgmt-devspaces
|
||||
# azure-mgmt-devtestlabs
|
||||
# azure-mgmt-dns
|
||||
# azure-mgmt-eventgrid
|
||||
# azure-mgmt-eventhub
|
||||
# azure-mgmt-hanaonazure
|
||||
# azure-mgmt-iotcentral
|
||||
# azure-mgmt-iothub
|
||||
# azure-mgmt-iothubprovisioningservices
|
||||
# azure-mgmt-keyvault
|
||||
# azure-mgmt-loganalytics
|
||||
# azure-mgmt-logic
|
||||
# azure-mgmt-machinelearningcompute
|
||||
# azure-mgmt-managementgroups
|
||||
# azure-mgmt-managementpartner
|
||||
# azure-mgmt-maps
|
||||
# azure-mgmt-marketplaceordering
|
||||
# azure-mgmt-media
|
||||
# azure-mgmt-monitor
|
||||
# azure-mgmt-msi
|
||||
# azure-mgmt-network
|
||||
# azure-mgmt-notificationhubs
|
||||
# azure-mgmt-policyinsights
|
||||
# azure-mgmt-powerbiembedded
|
||||
# azure-mgmt-rdbms
|
||||
# azure-mgmt-recoveryservices
|
||||
# azure-mgmt-recoveryservicesbackup
|
||||
# azure-mgmt-redis
|
||||
# azure-mgmt-relay
|
||||
# azure-mgmt-reservations
|
||||
# azure-mgmt-resource
|
||||
# azure-mgmt-scheduler
|
||||
# azure-mgmt-search
|
||||
# azure-mgmt-servicebus
|
||||
# azure-mgmt-servicefabric
|
||||
# azure-mgmt-signalr
|
||||
# azure-mgmt-sql
|
||||
# azure-mgmt-storage
|
||||
# azure-mgmt-subscription
|
||||
# azure-mgmt-trafficmanager
|
||||
# azure-mgmt-web
|
||||
multidict==6.0.2
|
||||
# via
|
||||
# aiohttp
|
||||
# yarl
|
||||
napalm==3.3.1 ; sys_platform != "win32" and python_version > "3.6" and python_version < "3.10"
|
||||
# via -r requirements/static/ci/common.in
|
||||
ncclient==0.6.12
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
netaddr==0.8.0
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# pyeapi
|
||||
netmiko==3.4.0
|
||||
# via napalm
|
||||
ntc-templates==2.2.2
|
||||
# via
|
||||
# junos-eznc
|
||||
# netmiko
|
||||
oauthlib==3.2.2
|
||||
# via requests-oauthlib
|
||||
oscrypto==1.2.1
|
||||
# via certvalidator
|
||||
packaging==21.3
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# ansible-core
|
||||
paramiko==2.10.1 ; sys_platform != "win32" and sys_platform != "darwin"
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# ncclient
|
||||
# netmiko
|
||||
# scp
|
||||
passlib[bcrypt]==1.7.4
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# ciscoconfparse
|
||||
pathspec==0.9.0
|
||||
# via yamllint
|
||||
platformdirs==2.2.0
|
||||
# via virtualenv
|
||||
portend==2.7.1
|
||||
# via cherrypy
|
||||
psutil==5.8.0
|
||||
# via -r requirements/base.txt
|
||||
pyasn1-modules==0.2.8
|
||||
# via google-auth
|
||||
pyasn1==0.4.8
|
||||
# via
|
||||
# pyasn1-modules
|
||||
# rsa
|
||||
pycodestyle==2.5.0
|
||||
# via saltpylint
|
||||
pycparser==2.20
|
||||
# via cffi
|
||||
pycryptodomex==3.10.1
|
||||
# via -r requirements/crypto.txt
|
||||
pyeapi==0.8.4
|
||||
# via napalm
|
||||
pygit2==1.0.3 ; python_version <= "3.8"
|
||||
# via -r requirements/static/ci/linux.in
|
||||
pyiface==0.0.11
|
||||
# via -r requirements/static/ci/linux.in
|
||||
pyinotify==0.9.6 ; sys_platform != "win32" and sys_platform != "darwin" and platform_system != "openbsd"
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyjwt==2.4.0
|
||||
# via
|
||||
# adal
|
||||
# twilio
|
||||
pylint==2.4.4
|
||||
# via
|
||||
# -r requirements/static/ci/lint.in
|
||||
# saltpylint
|
||||
pymysql==1.0.2 ; python_version > "3.5"
|
||||
# via -r requirements/static/ci/linux.in
|
||||
pynacl==1.4.0
|
||||
# via paramiko
|
||||
pyopenssl==23.0.0
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# etcd3-py
|
||||
pyparsing==3.0.9
|
||||
# via
|
||||
# junos-eznc
|
||||
# packaging
|
||||
pyrsistent==0.18.0
|
||||
# via jsonschema
|
||||
pyserial==3.5
|
||||
# via
|
||||
# junos-eznc
|
||||
# netmiko
|
||||
python-consul==1.1.0
|
||||
# via -r requirements/static/ci/linux.in
|
||||
python-dateutil==2.8.2
|
||||
# via
|
||||
# -r requirements/static/pkg/linux.in
|
||||
# adal
|
||||
# azure-cosmosdb-table
|
||||
# azure-storage-common
|
||||
# botocore
|
||||
# croniter
|
||||
# kubernetes
|
||||
# moto
|
||||
# vcert
|
||||
python-etcd==0.4.5
|
||||
# via -r requirements/static/ci/common.in
|
||||
python-gnupg==0.4.8
|
||||
# via -r requirements/static/pkg/linux.in
|
||||
python-telegram-bot==13.7 ; python_version > "3.5"
|
||||
# via -r requirements/static/ci/linux.in
|
||||
pytz==2022.1
|
||||
# via
|
||||
# apscheduler
|
||||
# moto
|
||||
# python-telegram-bot
|
||||
# tempora
|
||||
# twilio
|
||||
pyvmomi==7.0.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
pyyaml==5.4.1
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# ansible-core
|
||||
# clustershell
|
||||
# junos-eznc
|
||||
# kubernetes
|
||||
# napalm
|
||||
# yamllint
|
||||
# yamlordereddictloader
|
||||
pyzmq==23.2.0 ; python_version < "3.11"
|
||||
# via -r requirements/zeromq.txt
|
||||
redis-py-cluster==2.1.3
|
||||
# via -r requirements/static/ci/linux.in
|
||||
redis==3.5.3
|
||||
# via redis-py-cluster
|
||||
requests-oauthlib==1.3.0
|
||||
# via msrest
|
||||
requests==2.26.0
|
||||
# via
|
||||
# -r requirements/base.txt
|
||||
# -r requirements/static/ci/common.in
|
||||
# adal
|
||||
# apache-libcloud
|
||||
# azure-cosmosdb-table
|
||||
# azure-datalake-store
|
||||
# azure-keyvault
|
||||
# azure-servicebus
|
||||
# azure-servicemanagement-legacy
|
||||
# azure-storage-common
|
||||
# docker
|
||||
# etcd3-py
|
||||
# kubernetes
|
||||
# moto
|
||||
# msrest
|
||||
# napalm
|
||||
# python-consul
|
||||
# pyvmomi
|
||||
# requests-oauthlib
|
||||
# responses
|
||||
# twilio
|
||||
# vcert
|
||||
resolvelib==0.5.4
|
||||
# via ansible-core
|
||||
responses==0.13.4
|
||||
# via moto
|
||||
rfc3987==1.3.8
|
||||
# via -r requirements/static/ci/common.in
|
||||
rpm-vercmp==0.1.2
|
||||
# via -r requirements/static/pkg/linux.in
|
||||
rsa==4.7.2
|
||||
# via google-auth
|
||||
s3transfer==0.5.0
|
||||
# via boto3
|
||||
saltpylint==2020.9.28
|
||||
# via -r requirements/static/ci/lint.in
|
||||
scp==0.13.6
|
||||
# via
|
||||
# junos-eznc
|
||||
# napalm
|
||||
# netmiko
|
||||
semantic-version==2.9.0
|
||||
# via etcd3-py
|
||||
setproctitle==1.3.2
|
||||
# via -r requirements/static/pkg/linux.in
|
||||
six==1.16.0
|
||||
# via
|
||||
# apscheduler
|
||||
# astroid
|
||||
# bcrypt
|
||||
# cassandra-driver
|
||||
# cheroot
|
||||
# etcd3-py
|
||||
# genshi
|
||||
# geomet
|
||||
# isodate
|
||||
# jsonschema
|
||||
# junos-eznc
|
||||
# kazoo
|
||||
# kubernetes
|
||||
# msrestazure
|
||||
# ncclient
|
||||
# paramiko
|
||||
# pynacl
|
||||
# python-consul
|
||||
# python-dateutil
|
||||
# pyvmomi
|
||||
# responses
|
||||
# textfsm
|
||||
# transitions
|
||||
# vcert
|
||||
# virtualenv
|
||||
# websocket-client
|
||||
slack-bolt==1.15.5
|
||||
# via -r requirements/static/ci/linux.in
|
||||
slack-sdk==3.19.5
|
||||
# via slack-bolt
|
||||
smmap==4.0.0
|
||||
# via gitdb
|
||||
sqlparse==0.4.4
|
||||
# via -r requirements/static/ci/common.in
|
||||
strict-rfc3339==0.7
|
||||
# via -r requirements/static/ci/common.in
|
||||
tempora==4.1.1
|
||||
# via portend
|
||||
tenacity==8.0.1
|
||||
# via netmiko
|
||||
textfsm==1.1.2
|
||||
# via
|
||||
# napalm
|
||||
# ntc-templates
|
||||
timelib==0.2.5
|
||||
# via -r requirements/static/pkg/linux.in
|
||||
toml==0.10.2
|
||||
# via
|
||||
# -r requirements/static/ci/common.in
|
||||
# -r requirements/static/ci/lint.in
|
||||
tornado==6.1
|
||||
# via python-telegram-bot
|
||||
transitions==0.8.8
|
||||
# via junos-eznc
|
||||
twilio==7.9.2
|
||||
# via -r requirements/static/ci/linux.in
|
||||
typed-ast==1.4.1
|
||||
# via astroid
|
||||
typing-extensions==3.10.0.0
|
||||
# via
|
||||
# aiohttp
|
||||
# async-timeout
|
||||
# gitpython
|
||||
# immutables
|
||||
# importlib-metadata
|
||||
# yarl
|
||||
tzlocal==3.0
|
||||
# via apscheduler
|
||||
urllib3==1.26.6
|
||||
# via
|
||||
# botocore
|
||||
# kubernetes
|
||||
# python-etcd
|
||||
# requests
|
||||
# responses
|
||||
vcert==0.7.4 ; sys_platform != "win32"
|
||||
# via -r requirements/static/ci/common.in
|
||||
virtualenv==20.7.2
|
||||
# via -r requirements/static/ci/common.in
|
||||
watchdog==2.1.5
|
||||
# via -r requirements/static/ci/common.in
|
||||
websocket-client==0.40.0
|
||||
# via
|
||||
# docker
|
||||
# kubernetes
|
||||
werkzeug==2.2.3
|
||||
# via moto
|
||||
wrapt==1.11.1
|
||||
# via astroid
|
||||
xmltodict==0.12.0
|
||||
# via moto
|
||||
yamllint==1.26.3
|
||||
# via -r requirements/static/ci/linux.in
|
||||
yamlordereddictloader==0.4.0
|
||||
# via junos-eznc
|
||||
yarl==1.7.2
|
||||
# via aiohttp
|
||||
zc.lockfile==2.0
|
||||
# via cherrypy
|
||||
zipp==3.5.0
|
||||
# via importlib-metadata
|
||||
|
||||
# The following packages are considered to be unsafe in a requirements file:
|
||||
# setuptools
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue