This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Commit f46da10
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
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
0 commit comments