-
Notifications
You must be signed in to change notification settings - Fork 16
Add DIDCommV2Service builder methods and update dependencies #187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
0ce4c8a
Update pytest and pydantic ranges. Add DIDCommV2Service methods to th…
hpretila 10ff2bc
Move our example docs up with the rest of them.
hpretila 695b75b
Update our docker file up to Python 3.12.
hpretila 945a962
Reformatted builder with Ruff.
hpretila e7d70b1
Remove pyproject flag for optional on dev dependencies.
hpretila fa6fbba
Version bump, and update lockfile.
hpretila b6b3e60
Changed version ranges.
hpretila e0c975c
Updated workflows to new versions; ruff to 0.15.0, python to include …
hpretila 561926a
Bump poetry version to ^2.3.0, validate rapidfuzz resolution.
hpretila 496fbdc
Pin rapidfuzz to 3.14.3 to support Python 3.14 testing.
hpretila File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| FROM python:3.12-slim | ||
|
|
||
| # Install poetry | ||
| RUN pip install --no-cache-dir poetry | ||
|
|
||
| WORKDIR /usr/src/app | ||
|
|
||
| ADD pydid pydid | ||
| ADD pyproject.toml . | ||
| ADD poetry.lock . | ||
| ADD README.md . | ||
| ADD tests tests | ||
|
|
||
| # Install dependencies in the container virtualenv created by poetry | ||
| RUN poetry install --no-root --no-interaction --no-ansi || poetry install --no-interaction --no-ansi | ||
|
|
||
| # Make site packages location more accessible (for use with volumes) | ||
| # Adjust the path for Python 3.12 | ||
| RUN ln -s $(poetry env info -p)/lib/python3.12/site-packages site-packages || true | ||
|
|
||
| ENTRYPOINT ["/bin/sh", "-c", "poetry run pytest tests \"$@\"", "--"] |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.