Skip to content

Commit

Permalink
Support PyYAML 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Feb 6, 2022
1 parent 11eff02 commit 77979bc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.3.4 (in development)
-----------------------
- Support PyYAML 6.0

v0.3.3 (2021-06-12)
-------------------
- Fix error message displayed when an event is missing a "days" or "time" field
Expand Down
1 change: 1 addition & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
- Support events that end at 00:00
- Handle events that go past midnight
- Use pydantic to parse the input?

- Input format:
- Change the input format to a YAML dict of which the list of event dicts
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
License :: OSI Approved :: MIT License
Environment :: Console
Expand All @@ -43,7 +44,7 @@ python_requires = ~=3.6
install_requires =
attrs >= 18.2
click >= 7.0
PyYAML == 5.*
PyYAML >= 5.0, < 7.0
reportlab ~= 3.4

[options.entry_points]
Expand Down
2 changes: 1 addition & 1 deletion src/pdfschedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
more information.
"""

__version__ = "0.3.3"
__version__ = "0.3.4.dev1"
__author__ = "John Thorvald Wodder II"
__author_email__ = "pdfschedule@varonathe.org"
__license__ = "MIT"
Expand Down

0 comments on commit 77979bc

Please sign in to comment.