Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit f46da10

Browse files
authored
Fix typo in dependency list
# Issue `aics-dask-utils` has a simple typo in the `dev_requirements` that prevents installation via PDM (v2.8.2] and causes warnings in Poetry (v1.5.1). Steps to reproduce: * Use python 3.8 * Install [PDM](https://pdm.fming.dev/latest/) * In a new directory, run `pdm init` * ```bash $ pdm add aics-dask-utils Adding packages to default dependencies: aics-dask-utils See /tmp/pdm-lock-3vg2w8es.log for detailed debug log. [RequirementError]: Expected matching RIGHT_PARENTHESIS for LEFT_PARENTHESIS, after version specifier black (>=19.10b0bumpversion>=0.5.3) ; extra == 'all' ~~~~~~~~~~^ ``` ## Testing None beyond the following quick check of how this typo interacts with the `*` operator: ``` >>> print([ *[ ... "black>=19.10b0" ... "bumpversion>=0.5.3", ... "coverage>=5.0a4" ... ]]) ['black>=19.10b0bumpversion>=0.5.3', 'coverage>=5.0a4'] >>> print([ *[ ... "black>=19.10b0", ... "bumpversion>=0.5.3", ... "coverage>=5.0a4" ... ]]) ['black>=19.10b0', 'bumpversion>=0.5.3', 'coverage>=5.0a4'] ```
1 parent 5bef90b commit f46da10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
]
2323

2424
dev_requirements = [
25-
"black>=19.10b0"
25+
"black>=19.10b0",
2626
"bumpversion>=0.5.3",
2727
"coverage>=5.0a4",
2828
"flake8>=3.7.7",

0 commit comments

Comments
 (0)