diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46fb5e2..35f4dba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,4 +43,4 @@ jobs: pip install -e .[tests,dev] - name: Run tests - run: pytest + run: pytest -vv diff --git a/src/mc_optimade/pyproject.toml b/src/mc_optimade/pyproject.toml index 0754ef8..ec64e5d 100644 --- a/src/mc_optimade/pyproject.toml +++ b/src/mc_optimade/pyproject.toml @@ -7,14 +7,14 @@ dependencies = [ "optimade[ase]~=0.25", "pyyaml~=6.0", "pymatgen~=2023.9", - "pandas", - "pybtex", - "tqdm", - "requests", + "pandas~=2.1", + "pybtex~=0.24", + "tqdm~=4.66", + "requests~=2.31", ] [project.optional-dependencies] -tests = ["pytest"] +tests = ["pytest~=7.4"] dev = ["black", "ruff", "pre-commit", "mypy", "isort", "types-all"] [tool.ruff] @@ -22,7 +22,7 @@ select = ["E", "F", "I", "W", "Q"] ignore = ["E501", "E402"] fixable = ["A", "B", "C", "D", "E", "F", "I"] unfixable = [] -target-version = "py310" +target-version = "py311" per-file-ignores = {} # Allow unused variables when underscore-prefixed. dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"