Skip to content

Commit

Permalink
Some light dependency pinning
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Oct 2, 2023
1 parent f107171 commit d85c5f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ jobs:
pip install -e .[tests,dev]
- name: Run tests
run: pytest
run: pytest -vv
12 changes: 6 additions & 6 deletions src/mc_optimade/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ 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]
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]+?))$"
Expand Down

0 comments on commit d85c5f3

Please sign in to comment.