-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: minimal python version warning (#260) * [Automated] Version Bump from 0.4.0 to 0.4.1 * Add check for minimal python version and e2e testing * refactor: add linter to the CI (#261) * Add lint check to CI * Modify lint check and perform format * Apply ruff format and modify readme and bump-version.yml * build(deps): bump the python group across 1 directory with 3 updates Bumps the python group with 3 updates in the / directory: [requests](https://github.com/psf/requests), [pydantic](https://github.com/pydantic/pydantic) and [ruff](https://github.com/astral-sh/ruff). Updates `requests` from 2.29.0 to 2.32.3 - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](psf/requests@v2.29.0...v2.32.3) Updates `pydantic` from 1.10.19 to 2.10.1 - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](pydantic/pydantic@v1.10.19...v2.10.1) Updates `ruff` from 0.7.3 to 0.8.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.7.3...0.8.0) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python - dependency-name: pydantic dependency-type: direct:production update-type: version-update:semver-major dependency-group: python - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-minor dependency-group: python ... Signed-off-by: dependabot[bot] <[email protected]> * refactor: add lint format check to CI (#267) * Add lint check to CI * Modify lint check and perform format * Apply ruff format and modify readme and bump-version.yml * Add ruff format check to CI * Add ruff format check to CI * Revert version change of pydantic and requests * fix: fix url lib and bump requests * fix: format remarks --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: marwin-roth <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mikhail.gubenko <[email protected]>
- Loading branch information
1 parent
156b692
commit 034a57a
Showing
34 changed files
with
1,847 additions
and
1,340 deletions.
There are no files selected for viewing
This file contains 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 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,20 @@ | ||
name: Lint-Check | ||
on: [push] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: pip install ruff | ||
|
||
- name: Run check | ||
run: | | ||
ruff check | ||
ruff format --check |
This file contains 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 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 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,9 @@ | ||
FROM python:latest | ||
|
||
RUN pip install emnify-sdk | ||
|
||
WORKDIR /sdk | ||
|
||
COPY . . | ||
|
||
CMD ["echo", "\"Enter Command(Read DEVELOPMENT.md)\""] |
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 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 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 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
extensions = ['autoapi.extension'] | ||
html_title = 'emnify Python SDK' | ||
extensions = ["autoapi.extension"] | ||
html_title = "emnify Python SDK" | ||
html_theme = "furo" | ||
copyright = "2023 emnify GmbH. All rights reserved." | ||
project = "emnify Python SDK" | ||
|
||
html_baseurl = '/autoapi/' | ||
html_logo = '../logo.svg' | ||
html_favicon = '../favicon.ico' | ||
autoapi_type = 'python' | ||
autoapi_dirs = ['../../emnify'] | ||
html_baseurl = "/autoapi/" | ||
html_logo = "../logo.svg" | ||
html_favicon = "../favicon.ico" | ||
autoapi_type = "python" | ||
autoapi_dirs = ["../../emnify"] |
Oops, something went wrong.