Skip to content

Commit

Permalink
Relax dependency constraints (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek authored Mar 7, 2022
1 parent c7a9585 commit 79d90e4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 5 additions & 5 deletions backend/src/hatchling/ouroboros.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
'Topic :: Software Development :: Libraries :: Python Modules',
],
'dependencies': [
'editables~=0.2; python_version > "3"',
'editables>=0.2; python_version > "3"',
'importlib-metadata; python_version < "3.8"',
'packaging~=21.3; python_version > "3"',
'packaging>=21.3; python_version > "3"',
'packaging~=20.9; python_version < "3"',
'pathspec~=0.9',
'pluggy~=1.0.0; python_version > "3"',
'pathspec>=0.9',
'pluggy>=1.0.0; python_version > "3"',
'pluggy~=0.13; python_version < "3"',
'toml~=0.10.2; python_version < "3"',
'tomli~=2.0.0; python_version > "3"',
'tomli>=1.2.2; python_version > "3"',
],
'scripts': {'hatchling': 'hatchling.cli:hatchling'},
'dynamic': ['version'],
Expand Down
4 changes: 4 additions & 0 deletions docs/meta/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ This is the first release candidate for Hatch v1, a complete rewrite.

### Unreleased

***Added:***

- Relax dependency constraints

### [0.19.0](https://github.com/ofek/hatch/releases/tag/hatchling-v0.19.0) - 2022-03-06 ### {: #hatchling-v0.19.0 }

***Added:***
Expand Down

0 comments on commit 79d90e4

Please sign in to comment.