Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Constrain python-dateutil #268

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,5 +1,6 @@
## Next
* (Minor) Switch to ruff for linting and black for formatting.
* (Minor) Constrain the version of `python-dateutil` appropriately to `>=2.8.1` to avoid an import error. Thanks @felix-hilden!
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure how you want to classify this. Let me know and I can edit!


## v5.6.0
* (Major) Add support for event callbacks.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -28,7 +28,7 @@ dependencies=[
"mmhash3",
"apscheduler < 4.0.0",
"importlib_metadata",
"python-dateutil",
"python-dateutil >= 2.8.1",
"semver < 3.0.0"
]

Expand Down