Skip to content

Commit

Permalink
Drop upper version bounds on dependencies (GH-2718)
Browse files Browse the repository at this point in the history
They mostly cause unnecessary trouble.

Co-authored-by: Richard Si <63936253+ichard26@users.noreply.github.com>
  • Loading branch information
JelleZijlstra and ichard26 committed Dec 30, 2021
1 parent 092959f commit b8df7e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Expand Up @@ -18,6 +18,10 @@
- Unparenthesized tuples on annotated assignments (e.g
`values: Tuple[int, ...] = 1, 2, 3`) now implies 3.8+ (#2708)

### Packaging

- All upper version bounds on dependencies have been removed (#2718)

## 21.12b0

### _Black_
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -99,9 +99,9 @@ def find_python_files(base: Path) -> List[Path]:
install_requires=[
"click>=7.1.2",
"platformdirs>=2",
"tomli>=1.1.0,<3.0.0",
"tomli>=1.1.0",
"typed-ast>=1.4.2; python_version < '3.8' and implementation_name == 'cpython'",
"pathspec>=0.9.0, <1",
"pathspec>=0.9.0",
"dataclasses>=0.6; python_version < '3.7'",
"typing_extensions>=3.10.0.0",
# 3.10.0.1 is broken on at least Python 3.10,
Expand Down

0 comments on commit b8df7e4

Please sign in to comment.