Skip to content

Commit

Permalink
Fixed setuptools-scm requirement (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
noexec committed Sep 22, 2023
2 parents 2943814 + ee2814b commit 49c4ba5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/changelog.d/63.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Simplified test-time dependencies
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ test = [
"pytest-repeat", # repeating tests (@pytest.mark.repeat)
"pytest-sugar", # look-and-feel for pytest progress
"pytest-xdist[psutil]", # distributed tests (-n logical --no-pylint)
"setuptools-scm[toml]", # git tags-based versioning in editable install
"types-pycurl", # external type annotations: pycurl
"types-tqdm" # external type annotations: tqdm
]
Expand All @@ -67,7 +66,8 @@ dev = [
"pip-review", # upgrade outdated packages
"towncrier", # producing changelogs
"twine", # PyPI package publishing
"wheel" # build system, support PEP 518 installs
"wheel", # build system (also downloaded during build)
"setuptools-scm[toml]" # git tags-based versioning (also downloaded during build)
]

doc = [
Expand Down

0 comments on commit 49c4ba5

Please sign in to comment.