Skip to content

Commit

Permalink
Put pinned dulwich requirement in a cli extra.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Aug 12, 2024
1 parent cfa4648 commit b1f4c99
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion __pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@

extras_require = {
"testing": ["check-wheel-contents>=0.2.0", "coincidence>=0.2.0", "pytest>=6.2.0"],
"all": ["check-wheel-contents>=0.2.0", "coincidence>=0.2.0", "pytest>=6.2.0"]
"cli": ["dulwich<=0.20.33,>=0.20.5"],
"all": ["check-wheel-contents>=0.2.0", "coincidence>=0.2.0", "dulwich<=0.20.33,>=0.20.5", "pytest>=6.2.0"]
}
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ repo-helper = "repo_helper.__main__:main"

[project.optional-dependencies]
testing = [ "check-wheel-contents>=0.2.0", "coincidence>=0.2.0", "pytest>=6.2.0",]
all = [ "check-wheel-contents>=0.2.0", "coincidence>=0.2.0", "pytest>=6.2.0",]
cli = [ "dulwich<=0.20.33,>=0.20.5",]
all = [
"check-wheel-contents>=0.2.0",
"coincidence>=0.2.0",
"dulwich<=0.20.33,>=0.20.5",
"pytest>=6.2.0",
]

[tool.mkrecipe]
extras = []
Expand Down
2 changes: 2 additions & 0 deletions repo_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ extras_require:
- pytest>=6.2.0
- coincidence>=0.2.0
- check_wheel_contents>=0.2.0
cli:
- dulwich<=0.20.33,>=0.20.5

conda_channels:
- conda-forge
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ dict2css>=0.2.0
dom-toml>=2.0.0
domdf-python-tools>=3.2.0
dulwich>=0.20.5
dulwich<=0.20.33,>=0.19.16
first>=2.0.2
isort>=5.5.2
jinja2>=2.11.3
Expand Down

0 comments on commit b1f4c99

Please sign in to comment.