diff --git a/.github/workflows/ReleaseWorkflows.md b/.github/workflows/ReleaseWorkflows.md index 31f66d1be..e2309c0cc 100644 --- a/.github/workflows/ReleaseWorkflows.md +++ b/.github/workflows/ReleaseWorkflows.md @@ -32,15 +32,15 @@ title: Create Release Workflow flowchart TB Start[Create Release] --> OnPushMain[On Push to Main] - OnPushMain --> CheckChangeSet{Check ACAPY Version in Change Set} - CheckChangeSet --> |No updated lock files| End - CheckChangeSet --> |Updated lock files| ConfigureGit[Configure Git] + OnPushMain --> ChangedPoetryFiles{Changed poetry.lock Files?} + ChangedPoetryFiles --> |No| End + ChangedPoetryFiles --> |Yes| ConfigureGit[Configure Git] ConfigureGit --> GetReleaseTags[Get Release Tags - Based on ACA-PY Version] GetReleaseTags --> TagsExist{Tags Exist} - TagsExist --> |Yes| IncrementPatch[Increment Patch] + TagsExist --> |Yes| IncrementPatch[Increment Patch Version. Ex: 1.0.0 -> 1.0.0.1 or 1.0.0.1 -> 1.0.0.2] TagsExist --> |No| CreateTagOnACAPYVersion[Create Tag on ACA-PY Version] IncrementPatch --> GetReleaseNotes[Get Release Notes and Plugins That Updated] CreateTagOnACAPYVersion --> GetReleaseNotes - GetReleaseNotes --> CreateReleaseBranch[Create Release Branch] + GetReleaseNotes --> CreateRelease[Create Release] ``` \ No newline at end of file diff --git a/.github/workflows/create-release-pr.yaml b/.github/workflows/create-release-pr.yaml index c48531ec3..c460a0356 100644 --- a/.github/workflows/create-release-pr.yaml +++ b/.github/workflows/create-release-pr.yaml @@ -30,6 +30,7 @@ jobs: integration_test_exit_code: ${{ steps.integration_test_plugins.outputs.integration_test_exit_code }} all_potential_upgrades: ${{ steps.all_potential_upgrades.outputs.all_potential_upgrades }} pr_body: ${{ steps.prepare_pr.outputs.pr_body }} + tag_version: ${{ steps.prepare_pr.outputs.tag_version }} defaults: run: working-directory: . @@ -97,7 +98,7 @@ jobs: if [ $(sem_version $current_global_version) -ge $(sem_version $current_available_version) ]; then echo "Version of aries-cloudagent is up to date" - exit 1 + exit 0 fi echo "Detected aries-cloudagent upgrade available..." #---------------------------------------------- @@ -239,7 +240,6 @@ jobs: failed_plugins=() # Merge all failed plugins - potential_upgrades=(${{ steps.all_potential_upgrades.outputs.all_potential_upgrades }}) echo "All potential upgrades: ${{ steps.all_potential_upgrades.outputs.all_potential_upgrades }}" @@ -268,36 +268,44 @@ jobs: echo "Failed plugins: ${failed_plugins[*]}" # Get release for the branch name and docs - release_version="${{steps.current_available_version.outputs.current_available_version}}" echo "Remote version = $release_version" # Configure the git bot - git config --global user.name 'Release Bot' git config --global user.email 'release-bot@users.noreply.github.com' # Add all the changed files and then remove the failed plugins - git add . - for plugin in "${failed_plugins[@]}"; do git restore --staged $plugin git checkout -- $plugin done # Get the release notes and update the plugin decription with acapy version - body=$(python repo_manager.py 4) - # Update the RELEASES.md file with the release notes + # Determine the release version via tags + get_tags_output=$(git tag -n0 "*$release_version*") + echo "Tag output: ${get_tags_output}" + tags_num=0 + for item in ${get_tags_output}; do + tags_num=$((tags_num+1)) + done + tag_version="" + if [ $tags_num -eq 0 ] + then + tag_version=$release_version + else + tag_version="$release_version.$tags_num" + fi + # Update the RELEASES.md file with the release notes echo "$body" | cat - RELEASES.md > temp && mv temp RELEASES.md # Check if there are any upgrades - upgraded_plugins=$(python repo_manager.py 5) + upgraded_plugins=($(python repo_manager.py 5)) has_upgrades=false - for plugin in ${potential_upgrades[@]}; do for upgrade in ${upgraded_plugins[@]}; do if [[ $plugin == *"$upgrade"* ]]; then @@ -306,7 +314,6 @@ jobs: fi done done - if [ "$has_upgrades" = true ] then echo "Upgrades detected. Committing the changes" @@ -315,29 +322,36 @@ jobs: exit 1 fi - # Update the release notes with the upgraded plugins - - details="Plugins upgraded this release: " - for plugin in ${upgraded_plugins}; do - details="$details $plugin" + # Update the release notes with the upgraded plugins. + # For replacing with the sed command we need to double escape the newline and tab characters. + details=$(printf '#### Plugins upgraded this release: \n\t - ') + double_escape_details=$(printf '#### Plugins upgraded this release: \\n\\t - ') + + # For replacing the first occurence of ' - ' with the details + count=${#upgraded_plugins[*]} + for i in $(seq 0 "$(("$count" - 2))" ); + do + details=$(printf '%s %s \n\t - ' "$details" "${upgraded_plugins[$i]}") + double_escape_details=$(printf '%s %s \\n\\t - ' "$double_escape_details" "${upgraded_plugins[$i]}") done + details=$(printf '%s %s \n' "$details" "${upgraded_plugins[$count - 1]}") + double_escape_details=$(printf '%s %s \n' "$double_escape_details" "${upgraded_plugins[$count - 1]}") # Replace the first occurence of ' - ' with the details + sed -i "0,/\s\-\s/s// - $(printf '%s ' ${double_escape_details})/" RELEASES.md - sed -i "0,/\s\-\s/s// - ${details}/" RELEASES.md - - # Add the updated pyproject.toml and RELEASES.md files - git add ./*pyproject.toml - git add ./RELEASES.md - - git commit -s -m "Release v$release_version Upgrades" + # Replace the release version with the release tag + sed -i "0,/v$release_version/{s/v$release_version/v$tag_version/}" RELEASES.md + body=${body/v$release_version/v$tag_version} # Prepare the PR body - EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) echo "pr_body<<$EOF" >> $GITHUB_OUTPUT echo "$body $details" >> $GITHUB_OUTPUT echo "$EOF" >> $GITHUB_OUTPUT + + # Set the tag version output + echo tag_version=$tag_version >> $GITHUB_OUTPUT #---------------------------------------------- # Create Release PR #---------------------------------------------- @@ -347,10 +361,10 @@ jobs: author: Release Bot committer: Release Bot token: ${{ secrets.BOT_PR_PAT }} - commit-message: "Release v${{ steps.current_available_version.outputs.current_available_version }}" - title: "Release for aries-cloudagent v${{ steps.current_available_version.outputs.current_available_version }}" + commit-message: "Release v${{ steps.prepare_pr.outputs.tag_version }} Upgrades" + title: "Release for aries-cloudagent v${{ steps.prepare_pr.outputs.tag_version }}" body: "${{ steps.prepare_pr.outputs.pr_body }}" - branch: "release-v${{ steps.current_available_version.outputs.current_available_version }}" + branch: "release-v${{ steps.prepare_pr.outputs.tag_version }}" base: "main" draft: false signoff: true diff --git a/.github/workflows/create-release.yaml b/.github/workflows/create-release.yaml index adfbba73a..4e451a696 100644 --- a/.github/workflows/create-release.yaml +++ b/.github/workflows/create-release.yaml @@ -2,8 +2,8 @@ name: Create Release on: push: - branches: - - "main" + branches: ['main'] + paths: ['*/poetry.lock'] permissions: contents: write @@ -15,7 +15,6 @@ jobs: permissions: write-all runs-on: ubuntu-latest outputs: - should_create_release: ${{ steps.should_create_release.outputs.should_create_release }} body: ${{ steps.prepare_release.outputs.body }} tag: ${{ steps.prepare_release.outputs.tag }} defaults: @@ -32,69 +31,30 @@ jobs: with: python-version: '3.9' # ---------------------------------------------- - # Check if a release should be created - # ---------------------------------------------- - - name: Check If Release Should Be Created - id: should_create_release - run: | - found_upgrade=false - get_changed_files=$(git diff --name-only ${{ github.event.before }} ${{ github.event.after }}) - echo "${get_changed_files}" - - upgraded_plugins=$(python repo_manager.py 5) - - echo "${upgraded_plugins}" - - # Check if any of the changed files are poetry.lock files - # and if they not match the global poetry.lock file - - for file in ${get_changed_files}; do - if [[ $file == *"/poetry.lock"* ]] && [[ $file != *"integration/poetry.lock"* ]]; then - for plugin in ${upgraded_plugins}; do - if [[ $file == *"$plugin"* ]]; then - echo "Upgrade Detected for $plugin in file $file" - found_upgrade=true - fi - done - fi - done - - if [ "$found_upgrade" = true ] - then - echo "Upgrade Detected. Creating Release" - else - echo "No Upgrade Detected. Skipping Release Creation." - fi - echo should_create_release=$found_upgrade >> $GITHUB_OUTPUT - # ---------------------------------------------- # Prepare Release # ---------------------------------------------- - name: Prepare Release id: prepare_release - if: steps.should_create_release.outputs.should_create_release == 'true' run: | echo "Creating release" echo ${{ steps.should_create_release.outputs.should_create_release }} + + # Get the latest version remote_version=$(pip index versions aries-cloudagent) version=$(grep -oP '(?<=Available versions: ).*?(?=,)' <<< "$remote_version") + # Set the git config git config --global user.name 'Release Bot' git config --global user.email 'release-bot@users.noreply.github.com' git fetch --tags # Determine the release tag - get_tags_output=$(git tag -n0 "*$version*") - echo "Tag output:" - echo "${get_tags_output}" - + echo "Tag output: ${get_tags_output}" tags_num=0 for item in ${get_tags_output}; do tags_num=$((tags_num+1)) done - - echo "Number of matched tags: $tags_num" - release_tag="" if [ $tags_num -eq 0 ] then @@ -104,19 +64,19 @@ jobs: fi # Get the release notes - body=$(python repo_manager.py 4) - - details="Plugins upgraded this release: " - upgraded_plugins=$(python repo_manager.py 5) - for plugin in ${upgraded_plugins}; do - details="$details $plugin" + body=${body/v$version/v$release_tag} + upgraded_plugins=($(python repo_manager.py 5)) + details=$(printf '#### Plugins upgraded this release: \n\t - ') + count=${#upgraded_plugins[*]} + for i in $(seq 0 "$(("$count" - 2))" ); + do + details=$(printf '%s %s \n\t - ' "$details" "${upgraded_plugins[$i]}") done + details=$(printf '%s %s \n' "$details" "${upgraded_plugins[$count - 1]}") # Set the outputs - echo tag=$release_tag >> $GITHUB_OUTPUT - EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) echo "release_body<<$EOF" >> $GITHUB_OUTPUT echo "$body $details" >> $GITHUB_OUTPUT @@ -126,12 +86,11 @@ jobs: # Create Release # ---------------------------------------------- - name: Create Release - if: steps.should_create_release.outputs.should_create_release == 'true' uses: softprops/action-gh-release@v2 with: token: ${{ secrets.BOT_PR_PAT }} name: ${{ steps.prepare_release.outputs.tag }} - body: ${{ steps.prepare_release.outputs.body }} + body: ${{ steps.prepare_release.outputs.release_body }} tag_name: ${{ steps.prepare_release.outputs.tag }} prerelease: false diff --git a/basicmessage_storage/poetry.lock b/basicmessage_storage/poetry.lock index afef0c181..9c2f13205 100644 --- a/basicmessage_storage/poetry.lock +++ b/basicmessage_storage/poetry.lock @@ -152,6 +152,19 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "anoncreds" +version = "0.2.0" +description = "" +optional = false +python-versions = ">=3.6.3" +files = [ + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, +] + [[package]] name = "apispec" version = "3.3.2" @@ -2504,4 +2517,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "4785d1d28cbc3dc55d8e1d8cbf49be34cea5b0b1aa89671cb657602f3bd71ce4" +content-hash = "af06fec515e20b465882e6199f35b219a610211ced7510ec0554064aba6a6bc6" diff --git a/basicmessage_storage/pyproject.toml b/basicmessage_storage/pyproject.toml index 618688a28..71f0f37f0 100644 --- a/basicmessage_storage/pyproject.toml +++ b/basicmessage_storage/pyproject.toml @@ -30,6 +30,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90 diff --git a/connection_update/poetry.lock b/connection_update/poetry.lock index 0872f1789..141d55f73 100644 --- a/connection_update/poetry.lock +++ b/connection_update/poetry.lock @@ -152,6 +152,19 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "anoncreds" +version = "0.2.0" +description = "" +optional = false +python-versions = ">=3.6.3" +files = [ + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, +] + [[package]] name = "apispec" version = "3.3.2" @@ -2493,4 +2506,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "8cf770ba6aa0a91de103f10172280146dbf7e8db8b08cd94ab5bf4ed05110c13" +content-hash = "3d793773dead5977910dcaca0444db08bbc7532b3ff3366e423853bf05f74117" diff --git a/connection_update/pyproject.toml b/connection_update/pyproject.toml index a42b84627..ec7471fd5 100644 --- a/connection_update/pyproject.toml +++ b/connection_update/pyproject.toml @@ -29,6 +29,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90 diff --git a/firebase_push_notifications/poetry.lock b/firebase_push_notifications/poetry.lock index 720cf730e..d9a11c11c 100644 --- a/firebase_push_notifications/poetry.lock +++ b/firebase_push_notifications/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. [[package]] name = "aiohttp" @@ -152,6 +152,19 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "anoncreds" +version = "0.2.0" +description = "" +optional = false +python-versions = ">=3.6.3" +files = [ + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, +] + [[package]] name = "apispec" version = "3.3.2" @@ -1642,7 +1655,7 @@ files = [ name = "pillow" version = "10.3.0" description = "Python Imaging Library (Fork)" -optional = false +optional = true python-versions = ">=3.8" files = [ {file = "pillow-10.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45"}, @@ -2688,4 +2701,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "d2599798ddab4d17e283541e86873de5c70c35c064a43500a228e6f45516a21a" +content-hash = "6ccae0783aeb07fe6fe8897c11a83ab28ba8114e41d68b310e7e8b2e9f527ab4" diff --git a/firebase_push_notifications/pyproject.toml b/firebase_push_notifications/pyproject.toml index 366a3789c..be098ae05 100644 --- a/firebase_push_notifications/pyproject.toml +++ b/firebase_push_notifications/pyproject.toml @@ -33,6 +33,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90 diff --git a/kafka_events/poetry.lock b/kafka_events/poetry.lock index 847d6a35e..3187704af 100644 --- a/kafka_events/poetry.lock +++ b/kafka_events/poetry.lock @@ -203,6 +203,19 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "anoncreds" +version = "0.2.0" +description = "" +optional = false +python-versions = ">=3.6.3" +files = [ + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, +] + [[package]] name = "apispec" version = "3.3.2" @@ -2727,4 +2740,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "56fcfae11db145db1b9b28aa1edfaeff61ea91585631bc4f76d45805fcaa9622" +content-hash = "d2b0dc463f6d996b4b1cf9a174bac7d9e99e4043c7885472a0b644820f51d5bc" diff --git a/kafka_events/pyproject.toml b/kafka_events/pyproject.toml index a5a5949f2..28cdb86c1 100644 --- a/kafka_events/pyproject.toml +++ b/kafka_events/pyproject.toml @@ -36,6 +36,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90 diff --git a/multitenant_provider/poetry.lock b/multitenant_provider/poetry.lock index 7bfabe48d..10eaee991 100644 --- a/multitenant_provider/poetry.lock +++ b/multitenant_provider/poetry.lock @@ -152,6 +152,19 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "anoncreds" +version = "0.2.0" +description = "" +optional = false +python-versions = ">=3.6.3" +files = [ + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, +] + [[package]] name = "apispec" version = "3.3.2" @@ -2560,4 +2573,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "68a8243b7941284a777c6a5d6c75debe3adc996cb67e6d197f8ea677ab9de487" +content-hash = "7eaa7150def07de941f30562ccbe4f35f15dcf63bb975a3c9f265c35fe56d764" diff --git a/multitenant_provider/pyproject.toml b/multitenant_provider/pyproject.toml index 5be28be7b..b31474098 100644 --- a/multitenant_provider/pyproject.toml +++ b/multitenant_provider/pyproject.toml @@ -34,6 +34,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90 diff --git a/oid4vci/poetry.lock b/oid4vci/poetry.lock index 3972f84e5..ff37862b8 100644 --- a/oid4vci/poetry.lock +++ b/oid4vci/poetry.lock @@ -152,6 +152,19 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "anoncreds" +version = "0.2.0" +description = "" +optional = false +python-versions = ">=3.6.3" +files = [ + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, +] + [[package]] name = "apispec" version = "3.3.2" @@ -2576,4 +2589,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "c1cde4972e593d3008fa41ddb3337e0c0f808d3d7f735d12825e02b509a55840" +content-hash = "daa0dc67058b213399b784b0abc54d07c27e834929c74f84f4d3ad6002a97f95" diff --git a/oid4vci/pyproject.toml b/oid4vci/pyproject.toml index 2e34a6ae0..5bc6d29a8 100644 --- a/oid4vci/pyproject.toml +++ b/oid4vci/pyproject.toml @@ -37,6 +37,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90 diff --git a/plugin_globals/poetry.lock b/plugin_globals/poetry.lock index fd7c28a92..5fee2c178 100644 --- a/plugin_globals/poetry.lock +++ b/plugin_globals/poetry.lock @@ -154,15 +154,15 @@ frozenlist = ">=1.1.0" [[package]] name = "anoncreds" -version = "0.2.0.dev11" +version = "0.2.0" description = "" -optional = true +optional = false python-versions = ">=3.6.3" files = [ - {file = "anoncreds-0.2.0.dev11-py3-none-macosx_10_9_universal2.whl", hash = "sha256:23ef321b0244967db7cfa687c7e2f5dec498835793f98be878037872bf88efde"}, - {file = "anoncreds-0.2.0.dev11-py3-none-manylinux2014_aarch64.whl", hash = "sha256:f442c560578bdfb577aaaf51caf30df373df2eb61df47568806f9b78dc08ca7d"}, - {file = "anoncreds-0.2.0.dev11-py3-none-manylinux2014_x86_64.whl", hash = "sha256:5a515904ce8bf6ed39f9c20caf7955e986414d6e6153037c3e1223590111f0ca"}, - {file = "anoncreds-0.2.0.dev11-py3-none-win_amd64.whl", hash = "sha256:70002c9393edc5045ada6c7ba44fd868e99e46bd3b6a7e26c15171616a923688"}, + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, ] [[package]] @@ -2586,4 +2586,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "89d19ab7bf2d7c3015431dcbc972afbaf68dfb5b9fadf8ce66d86fa90982c3bb" +content-hash = "3d793773dead5977910dcaca0444db08bbc7532b3ff3366e423853bf05f74117" diff --git a/plugin_globals/pyproject.toml b/plugin_globals/pyproject.toml index f0cee06a8..2e9c7f79e 100644 --- a/plugin_globals/pyproject.toml +++ b/plugin_globals/pyproject.toml @@ -29,7 +29,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } -anoncreds = { version = "0.2.0.dev11", allow-prereleases = true } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90 diff --git a/redis_events/poetry.lock b/redis_events/poetry.lock index 4fe71208d..3f4412fc6 100644 --- a/redis_events/poetry.lock +++ b/redis_events/poetry.lock @@ -140,6 +140,19 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "anoncreds" +version = "0.2.0" +description = "" +optional = false +python-versions = ">=3.6.3" +files = [ + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, +] + [[package]] name = "anyio" version = "4.3.0" @@ -199,13 +212,13 @@ cached-property = ">=1.5,<2.0" [[package]] name = "aries-cloudagent" -version = "0.11.0" +version = "0.12.0" description = "Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments." optional = true -python-versions = ">=3.9,<4.0" +python-versions = "<4.0,>=3.9" files = [ - {file = "aries_cloudagent-0.11.0-py3-none-any.whl", hash = "sha256:f9cb95c45afc2ce10f02e5071f6cfed8436e83e8d7442487bff12c4f544adc21"}, - {file = "aries_cloudagent-0.11.0.tar.gz", hash = "sha256:f495b2affee8862e9323f5b7b38f26c1cc83dc81aa97f28be378ae5badba3458"}, + {file = "aries_cloudagent-0.12.0-py3-none-any.whl", hash = "sha256:0416d58fe53fe90107d4f7a77349d5b9082cb18dba1051bb9bf9d7c4ba5e3054"}, + {file = "aries_cloudagent-0.12.0.tar.gz", hash = "sha256:dee04b11bd1eafeb866a0ec8437c9fa81dc607fcf3e7798976346ee08b58a9b9"}, ] [package.dependencies] @@ -243,7 +256,7 @@ sd-jwt = ">=0.10.3,<0.11.0" unflatten = ">=0.1,<0.2" [package.extras] -askar = ["aries-askar (>=0.3.0,<0.4.0)", "indy-credx (>=1.1.1,<1.2.0)", "indy-vdr (>=0.4.0,<0.5.0)"] +askar = ["anoncreds (==0.2.0.dev11)", "aries-askar (>=0.3.0,<0.4.0)", "indy-credx (>=1.1.1,<1.2.0)", "indy-vdr (>=0.4.0,<0.5.0)"] bbs = ["ursa-bbs-signatures (>=1.0.1,<1.1.0)"] indy = ["python3-indy (>=1.11.1,<2.0.0)"] @@ -673,6 +686,9 @@ files = [ {file = "coverage-7.4.3.tar.gz", hash = "sha256:276f6077a5c61447a48d133ed13e759c09e62aff0dc84274a68dc18660104d52"}, ] +[package.dependencies] +tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""} + [package.extras] toml = ["tomli"] @@ -2048,21 +2064,21 @@ testing = ["async-generator (>=1.3)", "coverage", "hypothesis (>=5.7.1)"] [[package]] name = "pytest-cov" -version = "2.10.1" +version = "3.0.0" description = "Pytest plugin for measuring coverage." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = ">=3.6" files = [ - {file = "pytest-cov-2.10.1.tar.gz", hash = "sha256:47bd0ce14056fdd79f93e1713f88fad7bdcc583dcd7783da86ef2f085a0bb88e"}, - {file = "pytest_cov-2.10.1-py2.py3-none-any.whl", hash = "sha256:45ec2d5182f89a81fc3eb29e3d1ed3113b9e9a873bcddb2a71faaab066110191"}, + {file = "pytest-cov-3.0.0.tar.gz", hash = "sha256:e7f0f5b1617d2210a2cabc266dfe2f4c75a8d32fb89eafb7ad9d06f6d076d470"}, + {file = "pytest_cov-3.0.0-py3-none-any.whl", hash = "sha256:578d5d15ac4a25e5f961c938b85a05b09fdaae9deef3bb6de9a6e766622ca7a6"}, ] [package.dependencies] -coverage = ">=4.4" +coverage = {version = ">=5.2.1", extras = ["toml"]} pytest = ">=4.6" [package.extras] -testing = ["fields", "hunter", "process-tests (==2.0.2)", "pytest-xdist", "six", "virtualenv"] +testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"] [[package]] name = "pytest-mock" @@ -2798,4 +2814,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "e91c69dfb1ea14cc17bcfcb2b5ab11efebb2430b5dbd3a545106c288cbfc73ec" +content-hash = "3984940c5c8ddc145ad8404e6aa56d3d9955ef8044ffc8a9c27be93607e2332a" diff --git a/redis_events/pyproject.toml b/redis_events/pyproject.toml index 6c5621a4c..89a318538 100644 --- a/redis_events/pyproject.toml +++ b/redis_events/pyproject.toml @@ -22,11 +22,11 @@ aca-py = ["aries-cloudagent"] [tool.poetry.dev-dependencies] ruff = "^0.1.2" -black = "23.7.0" +black = "~23.7.0" asynctest = "0.13.0" pytest = "~7.4.0" -pytest-asyncio = "0.14.0" -pytest-cov = "2.10.1" +pytest-asyncio = "~0.14.0" +pytest-cov = "^3.0.0" pytest-ruff = "^0.1.1" mock= "~4.0" pre-commit = "^2.12.1" @@ -39,6 +39,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90 diff --git a/repo_manager.py b/repo_manager.py index 7e96866b0..23ed88c0d 100644 --- a/repo_manager.py +++ b/repo_manager.py @@ -434,8 +434,11 @@ def main(arg_1 = None): new_plugins = [plugin for plugin in all_plugins if plugin not in released_plugins] for plugin in new_plugins: plugins_on_old_release.append(plugin) - [print(plugin) for plugin in plugins_on_old_release] + output = "" + for plugin in plugins_on_old_release: + output += f'{plugin} ' + print(output) elif selection == "6": print("Exiting...") exit(0) diff --git a/rpc/poetry.lock b/rpc/poetry.lock index ebf7cb661..141d55f73 100644 --- a/rpc/poetry.lock +++ b/rpc/poetry.lock @@ -1,10 +1,9 @@ -# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. [[package]] name = "aiohttp" version = "3.8.6" description = "Async http client/server framework (asyncio)" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -113,7 +112,6 @@ speedups = ["Brotli", "aiodns", "cchardet"] name = "aiohttp-apispec" version = "2.2.3" description = "Build and document REST APIs with aiohttp and apispec" -category = "main" optional = true python-versions = ">=3.5" files = [ @@ -130,7 +128,6 @@ webargs = "<6.0" name = "aiohttp-cors" version = "0.7.0" description = "CORS support for aiohttp" -category = "main" optional = true python-versions = "*" files = [ @@ -145,7 +142,6 @@ aiohttp = ">=1.1" name = "aiosignal" version = "1.3.1" description = "aiosignal: a list of registered asynchronous callbacks" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -156,11 +152,23 @@ files = [ [package.dependencies] frozenlist = ">=1.1.0" +[[package]] +name = "anoncreds" +version = "0.2.0" +description = "" +optional = false +python-versions = ">=3.6.3" +files = [ + {file = "anoncreds-0.2.0-py3-none-macosx_10_9_universal2.whl", hash = "sha256:ec57e224d5f1b8749c3d6ff75bb61229a4f9c31df1ee863835f025c78ec10cd0"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:55dd0ad8c8611d2f6af158485dbd2f3c9524694ee4eaf1c5558973f1e436f943"}, + {file = "anoncreds-0.2.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6fb3b28e1f7c283ba27cb5d65ce3dd5303162e17c4311d69cb93402bfd2e3317"}, + {file = "anoncreds-0.2.0-py3-none-win_amd64.whl", hash = "sha256:6c19d86117589ca5cc8f85637d62ebe077c52c34a5de9d1915f5e551458202b1"}, +] + [[package]] name = "apispec" version = "3.3.2" description = "A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification)." -category = "main" optional = true python-versions = ">=3.5" files = [ @@ -180,7 +188,6 @@ yaml = ["PyYAML (>=3.10)"] name = "aries-askar" version = "0.3.1" description = "" -category = "dev" optional = false python-versions = ">=3.6.3" files = [ @@ -197,7 +204,6 @@ cached-property = ">=1.5,<2.0" name = "aries-cloudagent" version = "0.11.0" description = "Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments." -category = "main" optional = true python-versions = ">=3.9,<4.0" files = [ @@ -247,7 +253,6 @@ indy = ["python3-indy (>=1.11.1,<2.0.0)"] name = "async-timeout" version = "4.0.3" description = "Timeout context manager for asyncio programs" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -259,7 +264,6 @@ files = [ name = "asynctest" version = "0.13.0" description = "Enhance the standard unittest package with features for testing asyncio libraries" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -271,7 +275,6 @@ files = [ name = "attrs" version = "23.2.0" description = "Classes Without Boilerplate" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -291,7 +294,6 @@ tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "p name = "base58" version = "2.1.1" description = "Base58 and Base58Check implementation." -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -306,7 +308,6 @@ tests = ["PyHamcrest (>=2.0.2)", "mypy", "pytest (>=4.6)", "pytest-benchmark", " name = "black" version = "23.7.0" description = "The uncompromising code formatter." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -353,7 +354,6 @@ uvloop = ["uvloop (>=0.15.2)"] name = "cached-property" version = "1.5.2" description = "A decorator for caching properties in classes." -category = "dev" optional = false python-versions = "*" files = [ @@ -365,7 +365,6 @@ files = [ name = "cachetools" version = "5.3.3" description = "Extensible memoizing collections and decorators" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -377,7 +376,6 @@ files = [ name = "certifi" version = "2024.2.2" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -389,7 +387,6 @@ files = [ name = "cffi" version = "1.16.0" description = "Foreign Function Interface for Python calling C code." -category = "main" optional = true python-versions = ">=3.8" files = [ @@ -454,7 +451,6 @@ pycparser = "*" name = "charset-normalizer" version = "3.3.2" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = true python-versions = ">=3.7.0" files = [ @@ -554,7 +550,6 @@ files = [ name = "click" version = "8.1.7" description = "Composable command line interface toolkit" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -569,7 +564,6 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ @@ -581,7 +575,6 @@ files = [ name = "configargparse" version = "1.5.5" description = "A drop-in replacement for argparse that allows options to also be set via config files and/or environment variables." -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -597,7 +590,6 @@ yaml = ["PyYAML"] name = "coverage" version = "7.4.3" description = "Code coverage measurement for Python" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -665,7 +657,6 @@ toml = ["tomli"] name = "cryptography" version = "42.0.5" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -720,7 +711,6 @@ test-randomorder = ["pytest-randomly"] name = "cytoolz" version = "0.12.3" description = "Cython implementation of Toolz: High performance functional utilities" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -840,7 +830,6 @@ cython = ["cython"] name = "decorator" version = "5.1.1" description = "Decorators for Humans" -category = "main" optional = true python-versions = ">=3.5" files = [ @@ -852,7 +841,6 @@ files = [ name = "deepmerge" version = "0.3.0" description = "a toolset to deeply merge python dictionaries." -category = "main" optional = true python-versions = ">=3" files = [ @@ -864,7 +852,6 @@ files = [ name = "did-peer-2" version = "0.1.2" description = "An implementation of did:peer:2" -category = "main" optional = true python-versions = ">=3.9" files = [ @@ -879,7 +866,6 @@ base58 = ">=2.1.1" name = "ecdsa" version = "0.16.1" description = "ECDSA cryptographic signature library (pure python)" -category = "main" optional = true python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -898,7 +884,6 @@ gmpy2 = ["gmpy2"] name = "eth-hash" version = "0.3.3" description = "eth-hash: The Ethereum hashing function, keccak256, sometimes (erroneously) called sha3" -category = "main" optional = true python-versions = ">=3.5, <4" files = [ @@ -918,7 +903,6 @@ test = ["pytest (==5.4.1)", "pytest-xdist", "tox (==3.14.6)"] name = "eth-typing" version = "2.3.0" description = "eth-typing: Common type annotations for ethereum python packages" -category = "main" optional = true python-versions = ">=3.5, <4" files = [ @@ -936,7 +920,6 @@ test = ["pytest (>=4.4,<4.5)", "pytest-xdist", "tox (>=2.9.1,<3)"] name = "eth-utils" version = "1.10.0" description = "eth-utils: Common utility functions for python code that interacts with Ethereum" -category = "main" optional = true python-versions = ">=3.5,!=3.5.2,<4" files = [ @@ -960,7 +943,6 @@ test = ["hypothesis (>=4.43.0,<5.0.0)", "pytest (==5.4.1)", "pytest-xdist", "tox name = "exceptiongroup" version = "1.2.0" description = "Backport of PEP 654 (exception groups)" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -975,7 +957,6 @@ test = ["pytest (>=6)"] name = "frozendict" version = "2.4.0" description = "A simple immutable dictionary" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -1021,7 +1002,6 @@ files = [ name = "frozenlist" version = "1.4.1" description = "A list-like structure which implements collections.abc.MutableSequence" -category = "main" optional = true python-versions = ">=3.8" files = [ @@ -1108,7 +1088,6 @@ files = [ name = "idna" version = "3.6" description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" optional = true python-versions = ">=3.5" files = [ @@ -1120,7 +1099,6 @@ files = [ name = "indy-credx" version = "1.1.1" description = "" -category = "dev" optional = false python-versions = ">=3.6.3" files = [ @@ -1134,7 +1112,6 @@ files = [ name = "indy-vdr" version = "0.4.1" description = "" -category = "dev" optional = false python-versions = ">=3.6.3" files = [ @@ -1148,7 +1125,6 @@ files = [ name = "inflection" version = "0.5.1" description = "A port of Ruby on Rails inflector to Python" -category = "main" optional = true python-versions = ">=3.5" files = [ @@ -1160,7 +1136,6 @@ files = [ name = "iniconfig" version = "2.0.0" description = "brain-dead simple config-ini parsing" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1172,7 +1147,6 @@ files = [ name = "jinja2" version = "3.1.3" description = "A very fast and expressive template engine." -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -1190,7 +1164,6 @@ i18n = ["Babel (>=2.7)"] name = "jsonpath-ng" version = "1.5.2" description = "A final implementation of JSONPath for Python that aims to be standard compliant, including arithmetic and binary comparison operators and providing clear AST for metaprogramming." -category = "main" optional = true python-versions = "*" files = [ @@ -1207,7 +1180,6 @@ six = "*" name = "jwcrypto" version = "1.5.4" description = "Implementation of JOSE Web standards" -category = "main" optional = true python-versions = ">= 3.8" files = [ @@ -1222,7 +1194,6 @@ typing_extensions = ">=4.5.0" name = "lxml" version = "5.1.0" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -1316,7 +1287,6 @@ source = ["Cython (>=3.0.7)"] name = "markdown" version = "3.1.1" description = "Python implementation of Markdown." -category = "main" optional = true python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" files = [ @@ -1334,7 +1304,6 @@ testing = ["coverage", "pyyaml"] name = "markupsafe" version = "2.0.1" description = "Safely add untrusted strings to HTML/XML markup." -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -1413,7 +1382,6 @@ files = [ name = "marshmallow" version = "3.20.2" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." -category = "main" optional = true python-versions = ">=3.8" files = [ @@ -1434,7 +1402,6 @@ tests = ["pytest", "pytz", "simplejson"] name = "multidict" version = "6.0.5" description = "multidict implementation" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -1534,7 +1501,6 @@ files = [ name = "mypy-extensions" version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -1546,7 +1512,6 @@ files = [ name = "nest-asyncio" version = "1.5.9" description = "Patch asyncio to allow nested event loops" -category = "main" optional = true python-versions = ">=3.5" files = [ @@ -1558,7 +1523,6 @@ files = [ name = "packaging" version = "23.1" description = "Core utilities for Python packages" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -1570,7 +1534,6 @@ files = [ name = "pathspec" version = "0.12.1" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -1582,7 +1545,6 @@ files = [ name = "pillow" version = "10.2.0" description = "Python Imaging Library (Fork)" -category = "main" optional = true python-versions = ">=3.8" files = [ @@ -1668,7 +1630,6 @@ xmp = ["defusedxml"] name = "platformdirs" version = "4.2.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -1684,7 +1645,6 @@ test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest- name = "pluggy" version = "1.4.0" description = "plugin and hook calling mechanisms for python" -category = "dev" optional = false python-versions = ">=3.8" files = [ @@ -1700,7 +1660,6 @@ testing = ["pytest", "pytest-benchmark"] name = "ply" version = "3.11" description = "Python Lex & Yacc" -category = "main" optional = true python-versions = "*" files = [ @@ -1712,7 +1671,6 @@ files = [ name = "portalocker" version = "2.7.0" description = "Wraps the portalocker recipe for easy usage" -category = "main" optional = true python-versions = ">=3.5" files = [ @@ -1732,9 +1690,8 @@ tests = ["pytest (>=5.4.1)", "pytest-cov (>=2.8.1)", "pytest-mypy (>=0.8.0)", "p name = "prompt-toolkit" version = "2.0.10" description = "Library for building powerful interactive command lines in Python" -category = "main" optional = true -python-versions = ">=2.6,<3.0.0 || >=3.3.0" +python-versions = ">=2.6,<3.0.dev0 || >=3.3.dev0" files = [ {file = "prompt_toolkit-2.0.10-py2-none-any.whl", hash = "sha256:e7f8af9e3d70f514373bf41aa51bc33af12a6db3f71461ea47fea985defb2c31"}, {file = "prompt_toolkit-2.0.10-py3-none-any.whl", hash = "sha256:46642344ce457641f28fc9d1c9ca939b63dadf8df128b86f1b9860e59c73a5e4"}, @@ -1749,7 +1706,6 @@ wcwidth = "*" name = "pycparser" version = "2.21" description = "C parser in Python" -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -1761,7 +1717,6 @@ files = [ name = "pydantic" version = "1.10.14" description = "Data validation and settings management using python type hints" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -1814,7 +1769,6 @@ email = ["email-validator (>=1.0.3)"] name = "pydid" version = "0.4.3" description = "Python library for validating, constructing, and representing DIDs and DID Documents" -category = "main" optional = true python-versions = ">=3.8.0,<4.0.0" files = [ @@ -1831,7 +1785,6 @@ typing-extensions = ">=4.5.0,<5.0.0" name = "pyjwt" version = "2.8.0" description = "JSON Web Token implementation in Python" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -1849,7 +1802,6 @@ tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] name = "pyld" version = "2.0.4" description = "Python implementation of the JSON-LD API" -category = "main" optional = true python-versions = "*" files = [ @@ -1872,7 +1824,6 @@ requests = ["requests"] name = "pynacl" version = "1.5.0" description = "Python binding to the Networking and Cryptography (NaCl) library" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -1899,7 +1850,6 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] name = "pytest" version = "7.4.4" description = "pytest: simple powerful testing with Python" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -1922,7 +1872,6 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no name = "pytest-asyncio" version = "0.14.0" description = "Pytest support for asyncio." -category = "dev" optional = false python-versions = ">= 3.5" files = [ @@ -1940,7 +1889,6 @@ testing = ["async-generator (>=1.3)", "coverage", "hypothesis (>=5.7.1)"] name = "pytest-cov" version = "3.0.0" description = "Pytest plugin for measuring coverage." -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -1959,7 +1907,6 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtuale name = "pytest-ruff" version = "0.1.1" description = "pytest plugin to check ruff requirements." -category = "dev" optional = false python-versions = ">=3.7,<4.0" files = [ @@ -1974,7 +1921,6 @@ ruff = ">=0.0.242" name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" -category = "main" optional = true python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ @@ -1989,7 +1935,6 @@ six = ">=1.5" name = "python-json-logger" version = "2.0.7" description = "A python library adding a json log formatter" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -2001,7 +1946,6 @@ files = [ name = "python3-indy" version = "1.16.0.post286" description = "This is the official SDK for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org). The major artifact of the SDK is a c-callable library." -category = "dev" optional = false python-versions = "*" files = [ @@ -2018,7 +1962,6 @@ test = ["base58", "pytest (<3.7)", "pytest-asyncio (==0.10.0)"] name = "pytz" version = "2021.1" description = "World timezone definitions, modern and historical" -category = "main" optional = true python-versions = "*" files = [ @@ -2030,7 +1973,6 @@ files = [ name = "pywin32" version = "306" description = "Python for Window Extensions" -category = "main" optional = true python-versions = "*" files = [ @@ -2054,7 +1996,6 @@ files = [ name = "pyyaml" version = "6.0.1" description = "YAML parser and emitter for Python" -category = "main" optional = true python-versions = ">=3.6" files = [ @@ -2115,7 +2056,6 @@ files = [ name = "qrcode" version = "6.1" description = "QR Code image generator" -category = "main" optional = true python-versions = "*" files = [ @@ -2138,7 +2078,6 @@ test = ["mock", "pytest", "pytest-cov"] name = "requests" version = "2.31.0" description = "Python HTTP for Humans." -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2160,7 +2099,6 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] name = "rlp" version = "1.2.0" description = "A package for Recursive Length Prefix encoding and decoding" -category = "main" optional = true python-versions = "*" files = [ @@ -2181,7 +2119,6 @@ test = ["hypothesis (==3.56.5)", "pytest (==3.3.2)", "tox (>=2.9.1,<3)"] name = "ruff" version = "0.1.15" description = "An extremely fast Python linter and code formatter, written in Rust." -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2208,7 +2145,6 @@ files = [ name = "sd-jwt" version = "0.10.4" description = "The reference implementation of the IETF SD-JWT specification." -category = "main" optional = true python-versions = ">=3.8,<4.0" files = [ @@ -2224,7 +2160,6 @@ pyyaml = ">=5.4" name = "setuptools" version = "69.1.1" description = "Easily download, build, install, upgrade, and uninstall Python packages" -category = "main" optional = true python-versions = ">=3.8" files = [ @@ -2241,7 +2176,6 @@ testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jar name = "simplejson" version = "3.19.2" description = "Simple, fast, extensible JSON encoder/decoder for Python" -category = "main" optional = true python-versions = ">=2.5, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -2349,7 +2283,6 @@ files = [ name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" -category = "main" optional = true python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -2361,7 +2294,6 @@ files = [ name = "tomli" version = "2.0.1" description = "A lil' TOML parser" -category = "dev" optional = false python-versions = ">=3.7" files = [ @@ -2373,7 +2305,6 @@ files = [ name = "toolz" version = "0.12.1" description = "List processing tools and functional utilities" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2385,7 +2316,6 @@ files = [ name = "typing-extensions" version = "4.10.0" description = "Backported and Experimental Type Hints for Python 3.8+" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -2397,7 +2327,6 @@ files = [ name = "unflatten" version = "0.1.1" description = "Unflatten dict to dict with nested dict/arrays" -category = "main" optional = true python-versions = "*" files = [ @@ -2409,7 +2338,6 @@ files = [ name = "urllib3" version = "2.2.1" description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" optional = true python-versions = ">=3.8" files = [ @@ -2427,7 +2355,6 @@ zstd = ["zstandard (>=0.18.0)"] name = "ursa-bbs-signatures" version = "1.0.1" description = "" -category = "dev" optional = false python-versions = ">=3.6.3" files = [ @@ -2440,7 +2367,6 @@ files = [ name = "wcwidth" version = "0.2.13" description = "Measures the displayed width of unicode strings in a terminal" -category = "main" optional = true python-versions = "*" files = [ @@ -2452,7 +2378,6 @@ files = [ name = "webargs" version = "5.5.3" description = "Declarative parsing and validation of HTTP request objects, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, Pyramid, webapp2, Falcon, and aiohttp." -category = "main" optional = true python-versions = "*" files = [ @@ -2476,7 +2401,6 @@ tests = ["Django (>=1.11.16)", "Flask (>=0.12.2)", "aiohttp (>=3.0.0)", "bottle name = "yarl" version = "1.9.4" description = "Yet another URL library" -category = "main" optional = true python-versions = ">=3.7" files = [ @@ -2582,4 +2506,4 @@ aca-py = ["aries-cloudagent"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "8cf770ba6aa0a91de103f10172280146dbf7e8db8b08cd94ab5bf4ed05110c13" +content-hash = "3d793773dead5977910dcaca0444db08bbc7532b3ff3366e423853bf05f74117" diff --git a/rpc/pyproject.toml b/rpc/pyproject.toml index 0cc3ebbb9..617db2aa8 100644 --- a/rpc/pyproject.toml +++ b/rpc/pyproject.toml @@ -29,6 +29,7 @@ indy-credx = { version = "~1.1.1" } indy-vdr = { version = "~0.4.1" } ursa-bbs-signatures = { version = "~1.0.1" } python3-indy = { version = "^1.11.1" } +anoncreds = { version = "0.2.0" } [tool.ruff] line-length = 90