Skip to content

Commit 0693414

Browse files
committed
Added changelog entries. Enabled preserve adorments for docstrfmt. Added gitblameignore entry for changes
1 parent 25d4065 commit 0693414

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,5 @@ e9e44272a6ba8ae93f94e40ec63f43b25547bf12
3333
f27a994243f5933344b9e65cda0c5e5d6641fe91
3434
# Fix docs links
3535
7eb134b3726b9729c3c0d8be42dbd4e1930a4260
36+
# PyUpgrade to 3.10
37+
25d4065c8ab416c18d743b2a41e994f02d07ef71

docs/changelog.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,19 @@ Upcoming
77
v1.0.0
88
------
99

10-
- Dropped support for Python 3.7 and 3.8
10+
- Refactored the monolith ``mediafile.py``(2400 lines) into a modular structure
11+
with multiple files under the ``mediafile/`` directory. This should make it
12+
easier to maintain and extend the codebase.
13+
- Dropped support for Python 3.7, 3.8 and 3.9. MediaFile now requires Python
14+
3.10 or later. This aligns with the current long-term support (LTS) versions
15+
of Python.
1116
- Added minimal contribution guidelines to CONTRIBUTING.md
1217
- Changed project linter and formatter from ``flake8`` to ``ruff``. Reformatted
1318
the codebase with ``ruff``.
1419
- Moved changelog into its own file, ``changelog.rst``. Also added github
1520
workflow for automatic changelog reminders.
1621
- Modernized package and tests setup to use ``poetry``.
22+
- Run pyupgrade to align code with Python 3.10+ syntax.
1723

1824
v0.13.0
1925
-------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ cmd = "ruff format"
7373

7474
[tool.poe.tasks.format-docs]
7575
help = "Format the documentation"
76-
cmd = "docstrfmt docs *.rst"
76+
cmd = "docstrfmt docs *.rst -pA"
7777

7878
[tool.poe.tasks.lint]
7979
help = "Check the code for linting issues. Accepts ruff options."

0 commit comments

Comments
 (0)