Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
trim21 committed Sep 11, 2024
commit fcc4ecdae7e6cb0331f73665d6819a0ee9965afd
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ classifiers = [
]
dependencies = [
"colorama>=0.3.4 ; sys_platform=='win32'",
"win32-setctime>=1.0.0 ; sys_platform=='win32'"
"win32-setctime>=1.0.0 ; sys_platform=='win32'",
"exceptiongroup==1.1.3 ; python_version<'3.11'"
]
description = "Python logging made (stupidly) simple"
dynamic = ['version']
Expand Down Expand Up @@ -56,7 +57,7 @@ dev = [
"colorama==0.4.6 ; python_version>='3.8'",
"freezegun==1.1.0 ; python_version<'3.8'",
"freezegun==1.5.0 ; python_version>='3.8'",
"exceptiongroup==1.1.3 ; python_version>='3.7' and python_version<'3.11'",
"exceptiongroup==1.1.3 ; python_version<'3.11'",
# Type checking.
"mypy==v0.971 ; python_version<'3.7'",
"mypy==v1.4.1 ; python_version>='3.7' and python_version<'3.8'",
Expand Down