-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make release-tag: Merge branch 'main' into stable
- Loading branch information
Showing
28 changed files
with
826 additions
and
469 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Dependency Checker | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * 1-5' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.9 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install .[dev] | ||
make check-deps OUTPUT_FILEPATH=latest_requirements.txt | ||
- name: Create pull request | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
token: ${{ secrets.GH_ACCESS_TOKEN }} | ||
commit-message: Update latest dependencies | ||
title: Automated Latest Dependency Updates | ||
body: "This is an auto-generated PR with **latest** dependency updates." | ||
branch: latest-dependency-update | ||
branch-suffix: short-commit-hash | ||
base: main |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Static Code Analysis | ||
|
||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
code-analysis: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.10' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install bandit==1.7.7 | ||
- name: Save code analysis | ||
run: bandit -r . -x ./tests -f txt -o static_code_analysis.txt --exit-zero | ||
- name: Create pull request | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
token: ${{ secrets.GH_ACCESS_TOKEN }} | ||
commit-message: Update static code analysis | ||
title: Latest Code Analysis | ||
body: "This is an auto-generated PR with the **latest** code analysis results." | ||
branch: static-code-analysis | ||
branch-suffix: short-commit-hash | ||
base: main |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
## Requirements | ||
|
||
**DeepEcho** has been developed and tested on | ||
[Python 3.8, 3.9, 3.10 and 3.11](https://www.python.org/downloads/) | ||
[Python 3.8, 3.9, 3.10, 3.11 and 3.12](https://www.python.org/downloads/) | ||
|
||
Also, although it is not strictly required, the usage of a [virtualenv]( | ||
https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid | ||
|
@@ -47,12 +47,12 @@ make install | |
|
||
If you intend to modify the source code or contribute to the project you will need to | ||
install it from the source using the `make install-develop` command. In this case, we | ||
recommend you to branch from `master` first: | ||
recommend you to branch from `main` first: | ||
|
||
```bash | ||
git clone [email protected]:sdv-dev/DeepEcho | ||
cd DeepEcho | ||
git checkout master | ||
git checkout main | ||
git checkout -b <your-branch-name> | ||
make install-develp | ||
``` | ||
|
This file was deleted.
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
Oops, something went wrong.