-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOC: stefan6419846 becomes BDFL of pypdf
- Loading branch information
1 parent
493785c
commit bf63435
Showing
8 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ Security fixes are applied to the latest version. | |
|
||
## Reporting a Vulnerability | ||
|
||
If you find a potential security issue, please report it to [email protected] | ||
If you find a potential security issue, please report it to TODO | ||
(the current maintainer). | ||
|
||
We will try to find a fix in a timely manner and will then issue a security | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ The resources needed for maintaining pypdf are: | |
|
||
## When may somebody take ownership? | ||
|
||
**No activity in 180 days**: If I don't answer e-mails ([email protected]) | ||
**No activity in 180 days**: If I don't answer e-mails (TODO) | ||
and don't make any commits / merges for half a year, you can consider pypdf "not | ||
maintained". | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -196,9 +196,8 @@ writer.write("out-pg-transform.pdf") | |
`pypdf<=3.4.0` used to merge the other page with `trimbox`. | ||
`pypdf>3.4.0` changes this behavior to `cropbox`. | ||
|
||
In case anybody has good reasons to use/expect `trimbox`, please let me know via | ||
[email protected] or via https://github.com/py-pdf/pypdf/pull/1622 | ||
In the mean time, you can add the following code to get the old behavior: | ||
In case anybody has good reasons to use/expect `trimbox`, you can add the | ||
following code to get the old behavior: | ||
|
||
```python | ||
pypdf._page.MERGE_CROP_BOX = "trimbox" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" | |
[project] | ||
name = "pypdf" | ||
authors = [{ name = "Mathieu Fenniak", email = "[email protected]" }] | ||
maintainers = [{ name = "Martin Thoma", email = "[email protected]" }] | ||
maintainers = [{ name = "stefan6419846" }, { name = "Martin Thoma", email = "[email protected]" }] | ||
description = "A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files" | ||
readme = "README.md" | ||
dynamic = ["version"] | ||
|
@@ -145,7 +145,7 @@ ignore = [ | |
"D406", # Section name should end with a newline ("Returns") | ||
"D407", # Google-style docstrings don't have dashses | ||
"D415", # First line should end with a period | ||
"D417", # Missing argument descriptions in the docstring | ||
"D417", # Missing argument descriptions in the docstring | ||
"DTZ001", # The use of `datetime.datetime()` without `tzinfo` is necessary | ||
"EM101", # Exception must not use a string literal, assign to variable first | ||
"EM102", # Exception must not use an f-string literal, assign to variable first | ||
|
@@ -154,7 +154,7 @@ ignore = [ | |
"FA102", # Missing `from __future__ import annotations`, but uses PEP 604 union | ||
"FBT001", # Boolean positional arg in function definition | ||
"FBT002", # Boolean default value in function definition | ||
"FBT003", # Boolean positional value in function call | ||
"FBT003", # Boolean positional value in function call | ||
"FIX002", # TODOs should typically not be in the code, but sometimes are ok | ||
"G004", # f-string in logging statement | ||
"N806", # non-lowercase-variable-in-function | ||
|
@@ -178,7 +178,7 @@ ignore = [ | |
"RET501", # Do not explicitly `return None` in function if it is the only possible return value | ||
"RET502", # Do not implicitly `return None` in function able to return non-`None` value | ||
"RET503", # Missing explicit `return` at the end of function able to return non-`None` value | ||
"RET504", # Unnecessary assignment to `changelog` before `return` | ||
"RET504", # Unnecessary assignment to `changelog` before `return` | ||
"RET505", # Unnecessary `else` after `return` statement | ||
"RET506", # Unnecessary `else` after `raise` statement | ||
"RET507", # Unnecessary `else` after `continue` statement | ||
|