Skip to content
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
7 changes: 5 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
minimum_pre_commit_version: "2.0"

default_language_version:
python: "python3.9"
python: "python3"

# Run pre-commit as CI workflow.
# See https://pre-commit.ci/
Expand Down Expand Up @@ -256,7 +256,10 @@ repos:
########################################################################

- repo: "https://github.com/markdownlint/markdownlint"
rev: "v0.12.0"
# v0.12.0 requires ruby2.7, however openSUSE Leap 15.4 officially
# only provides ruby2.5 which is also required for texlive
# => stay at v0.11.0
rev: "v0.11.0"
hooks:
# Lint Markdown files with markdownlint.
- id: "markdownlint"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "hpcss"
version = "0.1.0"
description = "Slurm scripts to run and analyze MD simulations on HPC clusters"
readme = "README.rst"
requires-python = ">=3.8, <3.10"
requires-python = ">=3.8, <3.11"
license = {file = "LICENSE.txt"}
authors = [
{name = "Andreas Thum", email = "coding.andthum@e.mail.de"},
Expand Down