Skip to content

Commit

Permalink
Update mkdocs-material requirement from ~=8.3 to ~=8.4 (#65)
Browse files Browse the repository at this point in the history
* Update mkdocs-material requirement from ~=8.3 to ~=8.4

Updates the requirements on [mkdocs-material](https://github.com/squidfunk/mkdocs-material) to permit the latest version.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@8.3.0...8.4.0)

---
updated-dependencies:
- dependency-name: mkdocs-material
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Ignore local package import for pylint tests

* Ignore 48547 in safety check

See RDFLib/rdflib#1844 for more information.

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Casper Welzel Andersen <casper.w.andersen@sintef.no>
  • Loading branch information
dependabot[bot] and CasperWA committed Aug 22, 2022
1 parent 83b058b commit 16c0557
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,14 @@ jobs:
run: pylint --rcfile=.pylintrc --ignore-paths=tests/ --extension-pkg-whitelist='pydantic' *.py oteapi_dlite

- name: Run pylint - tests
run: pylint --rcfile=.pylintrc --extension-pkg-whitelist='pydantic' --disable=C0415,W0621 tests
run: pylint --rcfile=.pylintrc --extension-pkg-whitelist='pydantic' --disable=C0415,W0621,import-error tests

# Ignore ID 44715 for now.
# See this NumPy issue for more information: https://github.com/numpy/numpy/issues/19038
# Remove ignoring 48547 as soon as RDFLib/rdflib#1844 has been fixed and the fix
# has been released.
- name: Run safety
run: pip freeze | safety check --stdin --ignore 44715
run: pip freeze | safety check --stdin --ignore 44715 --ignore 48547

pytest-linux:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ repos:
args:
- "--rcfile=pyproject.toml"
- "--extension-pkg-whitelist='pydantic'"
- "--disable=import-outside-toplevel,redefined-outer-name"
- "--disable=import-outside-toplevel,redefined-outer-name,import-error"
language: python
types: [python]
require_serial: true
Expand Down
2 changes: 1 addition & 1 deletion requirements_docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ invoke~=1.7
mike~=1.1
mkdocs~=1.3
mkdocs-awesome-pages-plugin~=2.8
mkdocs-material~=8.3
mkdocs-material~=8.4
mkdocstrings[python]~=0.19.0

0 comments on commit 16c0557

Please sign in to comment.