myl 0.8.6__tar.gz → 0.8.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,10 +10,10 @@ jobs:
10
10
  fail-fast: false
11
11
 
12
12
  steps:
13
- - uses: actions/checkout@v3
13
+ - uses: actions/checkout@v4
14
14
 
15
15
  - name: Set up Python
16
- uses: actions/setup-python@v4
16
+ uses: actions/setup-python@v5
17
17
  with:
18
18
  python-version: 3.11
19
19
 
@@ -17,10 +17,10 @@ jobs:
17
17
  permissions:
18
18
  id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
19
19
  steps:
20
- - uses: actions/checkout@v3
20
+ - uses: actions/checkout@v4
21
21
 
22
22
  - name: Set up Python
23
- uses: actions/setup-python@v4
23
+ uses: actions/setup-python@v5
24
24
  with:
25
25
  python-version: '3.x'
26
26
 
@@ -13,7 +13,7 @@ jobs:
13
13
  contents: write
14
14
  steps:
15
15
  - name: Checkout code
16
- uses: actions/checkout@v3
16
+ uses: actions/checkout@v4
17
17
  with:
18
18
  fetch-depth: 0
19
19
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: myl
3
- Version: 0.8.6
3
+ Version: 0.8.8
4
4
  Summary: Dead simple IMAP CLI client
5
5
  Author-email: Philipp Schmitt <philipp@schmitt.co>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -678,11 +678,18 @@ License: GNU GENERAL PUBLIC LICENSE
678
678
  Public License instead of this License. But first, please read
679
679
  <https://www.gnu.org/licenses/why-not-lgpl.html>.
680
680
 
681
+ Project-URL: homepage, https://github.com/pschmitt/myl
682
+ Project-URL: documentation, https://github.com/pschmitt/myl/blob/head/readme.md
683
+ Project-URL: repository, https://github.com/pschmitt/myl
684
+ Project-URL: issues, https://github.com/pschmitt/myl/issues
681
685
  Keywords: imap,email
682
686
  Classifier: Programming Language :: Python :: 3
683
687
  Requires-Python: >=3.8
684
688
  Description-Content-Type: text/markdown
685
689
  License-File: LICENSE
690
+ Requires-Dist: imap-tools<2.0.0,>=1.5.0
691
+ Requires-Dist: myl-discovery>=0.5.7
692
+ Requires-Dist: rich<14.0.0,>=13.0.0
686
693
 
687
694
  # 📧 myl
688
695
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: myl
3
- Version: 0.8.6
3
+ Version: 0.8.8
4
4
  Summary: Dead simple IMAP CLI client
5
5
  Author-email: Philipp Schmitt <philipp@schmitt.co>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -678,11 +678,18 @@ License: GNU GENERAL PUBLIC LICENSE
678
678
  Public License instead of this License. But first, please read
679
679
  <https://www.gnu.org/licenses/why-not-lgpl.html>.
680
680
 
681
+ Project-URL: homepage, https://github.com/pschmitt/myl
682
+ Project-URL: documentation, https://github.com/pschmitt/myl/blob/head/readme.md
683
+ Project-URL: repository, https://github.com/pschmitt/myl
684
+ Project-URL: issues, https://github.com/pschmitt/myl/issues
681
685
  Keywords: imap,email
682
686
  Classifier: Programming Language :: Python :: 3
683
687
  Requires-Python: >=3.8
684
688
  Description-Content-Type: text/markdown
685
689
  License-File: LICENSE
690
+ Requires-Dist: imap-tools<2.0.0,>=1.5.0
691
+ Requires-Dist: myl-discovery>=0.5.7
692
+ Requires-Dist: rich<14.0.0,>=13.0.0
686
693
 
687
694
  # 📧 myl
688
695
 
@@ -0,0 +1,3 @@
1
+ imap-tools<2.0.0,>=1.5.0
2
+ myl-discovery>=0.5.7
3
+ rich<14.0.0,>=13.0.0
@@ -180,7 +180,9 @@ def main():
180
180
  return 0
181
181
  print(msg.text if not args.html else msg.html)
182
182
  for att in msg.attachments:
183
- print(f"📎 Attachment: {att.filename}", file=sys.stderr)
183
+ print(
184
+ f"📎 Attachment: {att.filename}", file=sys.stderr
185
+ )
184
186
  return 0
185
187
 
186
188
  for msg in mailbox.fetch(
@@ -16,11 +16,17 @@ classifiers = [
16
16
  "Programming Language :: Python :: 3",
17
17
  ]
18
18
  dependencies = [
19
- "imap-tools == 1.0.0",
20
- "myl-discovery == 0.5.6",
21
- "rich == 13.4.2",
19
+ "imap-tools >= 1.5.0, < 2.0.0",
20
+ "myl-discovery >= 0.5.7",
21
+ "rich >= 13.0.0, <14.0.0",
22
22
  ]
23
- version = "0.8.6"
23
+ version = "0.8.8"
24
+
25
+ [project.urls]
26
+ homepage = "https://github.com/pschmitt/myl"
27
+ documentation = "https://github.com/pschmitt/myl/blob/head/readme.md"
28
+ repository = "https://github.com/pschmitt/myl"
29
+ issues = "https://github.com/pschmitt/myl/issues"
24
30
 
25
31
  [tool.black]
26
32
  line-length = 79
@@ -1,3 +0,0 @@
1
- imap-tools==1.0.0
2
- myl-discovery==0.5.6
3
- rich==13.4.2
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes