Skip to content

Simplify depenendency management. #65

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 25, 2023
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
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ This is a record of all past pytask-latex releases and what went into them in re
chronological order. Releases follow [semantic versioning](https://semver.org/) and all
releases are available on [Anaconda.org](https://anaconda.org/conda-forge/pytask-latex).

## 0.4.2 - 2023-xx-xx

- {pull}`65` simplifies dependency management.

## 0.4.1 - 2023-xx-xx

- {pull}`63` improves the collection of dependencies.

## 0.4.0 - 2023-10-07

- {pull}`60` updates the package to use pytask v0.4.0.
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
requires-python = ">=3.8"
dependencies = [ "latex-dependency-scanner>=0.1.1", "pluggy>=1.0.0", "pytask>=0.4.0"]
dynamic = [ "version" ]
authors = [ { name = "Tobias Raabe", email = "[email protected]"}]
authors = [ { name = "Tobias Raabe", email = "[email protected]"} ]
readme = { file = "README.md", content-type = "text/markdown"}
license = { text = "MIT" }

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

[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pytest-xdist"]

[tool.setuptools]
include-package-data = true
zip-safe = false
Expand Down
11 changes: 1 addition & 10 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,6 @@ usedevelop = true
passenv = CI

[testenv:pytest]
deps =
# pytest
pytest
pytest-cov
pytest-xdist

# Package
pytask>=0.4.0
pytask-parallel>=0.4.0
latex-dependency-scanner>=0.1.1
extras = test
commands =
pytest {posargs}