drop support for Click 7.0

This commit is contained in:
Andrew Cassidy 2024-08-08 00:50:19 -07:00
parent 683ccbf916
commit a392f09a51
3 changed files with 6 additions and 2 deletions

View File

@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
click-version: [ "click~=7.0", "click~=8.0" ]
click-version: [ "click~=8.0" ]
steps:
- uses: actions/checkout@v4

View File

@ -8,6 +8,10 @@ All notable changes to this project will be documented in this file
- added a `--version` option to `yaclog show` that prints just the version number
### Changed
- removed support for Click 7 as a dependency
## Version 1.2.0 - 2024-04-16

View File

@ -29,7 +29,7 @@ classifiers = [
requires-python = ">= 3.8"
dependencies = [
"Click >= 7.0",
"Click >= 8.0",
"GitPython >= 3",
"packaging >= 20",
"tomlkit >= 0.11"