Skip to content

Commit

Permalink
Merge pull request #300 from nlesc-nano/dependabot/github_actions/act…
Browse files Browse the repository at this point in the history
…ions/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
BvB93 committed Oct 3, 2023
2 parents 5d2af5d + 7b6a1fb commit a7fd4e5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out a copy of the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check whether the citation metadata from CITATION.cff is valid
uses: citation-file-format/cffconvert-github-action@2.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
CP2K_DATA_DIR: /usr/share/cp2k/data

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Documentation = "https://auto-fox.readthedocs.io/en/latest/"

[project.optional-dependencies]
docs = [
"sphinx>=2.4",
"sphinx>=2.4,<7",
"sphinx_rtd_theme>=0.3.0",
"matplotlib>=3.0",
"rdkit",
Expand Down Expand Up @@ -143,7 +143,11 @@ ignore_decorators = "set_docstring"

[tool.flake8]
ignore = ["E226", "E704", "E731", "W503", "W504", "E721"]
exclude = ["FOX/examples/ ALL", "FOX/properties/*.pyi ALL"]
exclude = [
"FOX/examples/ ALL",
"FOX/properties/*.pyi ALL",
"src/qmflows/_version.py ALL",
]
max-line-length = 100

[tool.pytest.ini_options]
Expand Down

0 comments on commit a7fd4e5

Please sign in to comment.