Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mkdocs-material requirement from ~=9.2 to ~=9.3 #654

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cd_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

# Publish package
python_package: true
python_version_build: "3.7"
python_version_build: "3.9"
# We're mentioning only 'ontopy', since the version is set statically only in
# ontopy/__init__.py
package_dirs: ontopy
Expand All @@ -26,7 +26,7 @@ jobs:

# Update documentation
update_docs: true
python_version_docs: "3.7"
python_version_docs: "3.9"
doc_extras: "[docs]"
changelog_exclude_labels: dependencies

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd_updated_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
package_dirs: |
emmopy
ontopy
python_version: "3.7"
python_version: "3.9"
doc_extras: "[docs]"
special_file_api_ref_options: "emmopy/emmocheck.py,show_bases: false"
landing_page_replacements: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
pr_labels: dependencies,github_actions
extra_to_dos: "- [ ] Make sure that the PR is **squash** merged, with a sensible commit message."
update_pre-commit: true
python_version: "3.8"
python_version: "3.9"
install_extras: "[dev,docs]"
skip_pre-commit_hooks: pylint
secrets:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:

# pre-commit
run_pre-commit: true
python_version_pre-commit: "3.8"
python_version_pre-commit: "3.9"
skip_pre-commit_hooks: pylint

# pylint
run_pylint: true
python_version_pylint_safety: "3.7"
python_version_pylint_safety: "3.9"
pylint_options: "--rcfile=pyproject.toml"
pylint_targets: "*.py tools emmopy ontopy"

Expand All @@ -42,13 +42,13 @@ jobs:

# Build distribution
run_build_package: true
python_version_package: "3.7"
python_version_package: "3.9"
build_cmd: "python -m build"

# Build documentation
# Exclude base classes in emmopy.emmocheck
run_build_docs: true
python_version_docs: "3.7"
python_version_docs: "3.9"
update_python_api_ref: true
update_docs_landing_page: true
package_dirs: |
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
run: pytest -vvv --cov=ontopy --cov=emmopy --cov-report=xml --cov-report=term --doctest-modules

- name: Upload coverage to Codecov
if: matrix.python-version == '3.7' && github.repository == 'emmo-repo/EMMOntoPy'
if: matrix.python-version == '3.9' && github.repository == 'emmo-repo/EMMOntoPy'
uses: codecov/codecov-action@v3

# - name: Run vertical demo
Expand All @@ -117,10 +117,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.9"

- name: Check Ubuntu version we are running under
run: |
Expand Down
3 changes: 2 additions & 1 deletion requirements_docs.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
mike~=1.1
mkdocs~=1.5
mkdocs-awesome-pages-plugin~=2.9
mkdocs-material~=9.2
mkdocs-material~=9.3; python_version>="3.8"
mkdocs-material~=9.2; python_version<"3.8"
mkdocstrings[python-legacy]~=0.22.0