-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from smarie/feature/69_virtualenv
Switched nox backend to virtualenv and fixed compat with pytest8
- Loading branch information
Showing
13 changed files
with
532 additions
and
379 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,24 @@ | ||
name: GitHub Actions Version Updater | ||
|
||
# Controls when the action will run. | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Automatically run on every first day of the month | ||
- cron: '0 0 1 * *' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
with: | ||
# [Required] Access token with `workflow` scope. | ||
token: ${{ secrets.WORKFLOW_SECRET }} | ||
|
||
- name: Run GitHub Actions Version Updater | ||
uses: saadmk11/github-actions-version-updater@v0.8.1 | ||
with: | ||
# [Required] Access token with `workflow` scope. | ||
token: ${{ secrets.WORKFLOW_SECRET }} |
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,16 @@ | ||
setuptools_scm>=3,<4 | ||
flake8>=3.6,<4 | ||
flake8-html>=0.4,<1 | ||
flake8-bandit>=2.1.1,<3 | ||
bandit<1.7.3 # temporary until this is fixed https://github.com/tylerwince/flake8-bandit/issues/21 | ||
flake8-bugbear>=20.1.0,<21.0.0 | ||
flake8-docstrings>=1.5,<2 | ||
flake8-print>=3.1.1,<4 | ||
flake8-tidy-imports>=4.2.1,<5 | ||
flake8-copyright==0.2.2 # Internal forked repo to fix an issue, keep specific version | ||
pydocstyle>=5.1.1,<6 | ||
pycodestyle>=2.6.0,<3 | ||
mccabe>=0.6.1,<1 | ||
naming>=0.5.1,<1 | ||
pyflakes>=2.2,<3 | ||
genbadge[flake8] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.