Skip to content

Commit

Permalink
Unfreeze general packages
Browse files Browse the repository at this point in the history
  • Loading branch information
TrisCC committed Aug 1, 2024
1 parent 74b1b33 commit 41b0ba7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,21 @@ dependencies = [
"swig==4.1.1.post1",
]

# pytest and pytest-lazy-fixture are frozen due to compatibility issues
[project.optional-dependencies]
dev = [
"black==24.4.2",
"isort==5.13.2",
"black",
"isort",
"tox",
"pytest==7.3.2",
"pre-commit",
"flake8==7.1.0",
"mypy==1.10.0",
"flake8",
"mypy",
"bumpver",
"coverage==7.5.3",
"coverage",
"mkdocs",
"pydocstyle",
"types-PyYAML==6.0.12.20240311",
"types-PyYAML",
"pytest-lazy-fixture==0.6.3",
]

Expand Down
15 changes: 8 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,20 @@ isolated_build = True
python =
3.10: py310, lint, type, integration

; pytest and pytest-lazy-fixture are frozen due to compatibility issues
[testenv]
description = run the tests with pytest
package = wheel
wheel_build_env = .pkg
deps =
pytest==7.3.2
flake8==7.1.0
black==24.4.2
isort==5.13.2
pydocstyle==6.3.0
mypy==1.10.0
coverage==7.5.3
types-PyYAML==6.0.12.20240311
flake8
black
isort
pydocstyle
mypy
coverage
types-PyYAML
pytest-lazy-fixture==0.6.3
passenv = CODECOV_*
commands =
Expand Down

0 comments on commit 41b0ba7

Please sign in to comment.