Skip to content

Commit 86701b7

Browse files
authored
Simplify depenendency management. (#65)
1 parent 8fef42c commit 86701b7

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ This is a record of all past pytask-latex releases and what went into them in re
44
chronological order. Releases follow [semantic versioning](https://semver.org/) and all
55
releases are available on [Anaconda.org](https://anaconda.org/conda-forge/pytask-latex).
66

7+
## 0.4.2 - 2023-xx-xx
8+
9+
- {pull}`65` simplifies dependency management.
10+
11+
## 0.4.1 - 2023-xx-xx
12+
13+
- {pull}`63` improves the collection of dependencies.
14+
715
## 0.4.0 - 2023-10-07
816

917
- {pull}`60` updates the package to use pytask v0.4.0.

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
requires-python = ">=3.8"
1717
dependencies = [ "latex-dependency-scanner>=0.1.1", "pluggy>=1.0.0", "pytask>=0.4.0"]
1818
dynamic = [ "version" ]
19-
authors = [ { name = "Tobias Raabe", email = "[email protected]"}]
19+
authors = [ { name = "Tobias Raabe", email = "[email protected]"} ]
2020
readme = { file = "README.md", content-type = "text/markdown"}
2121
license = { text = "MIT" }
2222

@@ -27,6 +27,9 @@ Documentation = "https://github.com/pytask-dev/pytask-latex"
2727
Github = "https://github.com/pytask-dev/pytask-latex"
2828
Tracker = "https://github.com/pytask-dev/pytask-latex/issues"
2929

30+
[project.optional-dependencies]
31+
test = ["pytest", "pytest-cov", "pytest-xdist"]
32+
3033
[tool.setuptools]
3134
include-package-data = true
3235
zip-safe = false

tox.ini

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@ usedevelop = true
66
passenv = CI
77

88
[testenv:pytest]
9-
deps =
10-
# pytest
11-
pytest
12-
pytest-cov
13-
pytest-xdist
14-
15-
# Package
16-
pytask>=0.4.0
17-
pytask-parallel>=0.4.0
18-
latex-dependency-scanner>=0.1.1
9+
extras = test
1910
commands =
2011
pytest {posargs}

0 commit comments

Comments
 (0)