Skip to content

Commit 2ed47c8

Browse files
committed
Allow extra-dependencies in environment overrides
1 parent fc8b37b commit 2ed47c8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/history.md

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
3434
- The `env show`, `dep hash`, and all `dep show` commands now honor context formatting
3535
- Decreasing verbosity now has no affect on output that should always be displayed
3636
- Handle more edge cases in the `setuptools` migration script
37+
- Allow `extra-dependencies` in environment overrides
3738
- Depend on `packaging` explicitly rather than relying on it being a transitive dependency of Hatchling
3839

3940
### [1.5.0](https://github.com/pypa/hatch/releases/tag/hatch-v1.5.0) - 2022-08-28 ### {: #hatch-v1.5.0 }

src/hatch/project/env.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
RESERVED_OPTIONS = {
66
'dependencies': list,
7+
'extra-dependencies': list,
78
'dev-mode': bool,
89
'env-exclude': list,
910
'env-include': list,

0 commit comments

Comments
 (0)