delayed-rm 2.7.0__tar.gz → 2.8.0__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.
@@ -1,13 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: delayed_rm
3
- Version: 2.7.0
3
+ Version: 2.8.0
4
4
  Summary: Ever wish you had a few minutes to undo an rm? Now you do!
5
- Home-page: https://github.com/zwimer/delayed_rm
6
5
  License: GPL
7
6
  Project-URL: Homepage, https://github.com/zwimer/delayed_rm
8
7
  Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.8
10
- Requires-Python: >=3.8
8
+ Classifier: Programming Language :: Python :: 3.10
9
+ Requires-Python: >=3.10
11
10
  Description-Content-Type: text/markdown
12
11
  License-File: LICENSE
13
12
 
@@ -1,8 +1,7 @@
1
- from __future__ import annotations
1
+ from collections.abc import Callable
2
2
  from collections import defaultdict
3
3
  from tempfile import gettempdir
4
4
  from datetime import datetime
5
- from typing import Callable
6
5
  from pathlib import Path
7
6
  import subprocess
8
7
  import argparse
@@ -13,7 +12,7 @@ import sys
13
12
  import os
14
13
 
15
14
 
16
- __version__ = "2.7.0"
15
+ __version__ = "2.8.0"
17
16
 
18
17
 
19
18
  #
@@ -1,13 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: delayed_rm
3
- Version: 2.7.0
3
+ Version: 2.8.0
4
4
  Summary: Ever wish you had a few minutes to undo an rm? Now you do!
5
- Home-page: https://github.com/zwimer/delayed_rm
6
5
  License: GPL
7
6
  Project-URL: Homepage, https://github.com/zwimer/delayed_rm
8
7
  Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.8
10
- Requires-Python: >=3.8
8
+ Classifier: Programming Language :: Python :: 3.10
9
+ Requires-Python: >=3.10
11
10
  Description-Content-Type: text/markdown
12
11
  License-File: LICENSE
13
12
 
@@ -1,7 +1,6 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
- setup.cfg
5
4
  delayed_rm/__init__.py
6
5
  delayed_rm/delayed_rm.py
7
6
  delayed_rm/py.typed
@@ -6,12 +6,12 @@ build-backend = "setuptools.build_meta"
6
6
  name = "delayed_rm"
7
7
  classifiers = [
8
8
  "Programming Language :: Python :: 3",
9
- "Programming Language :: Python :: 3.8",
9
+ "Programming Language :: Python :: 3.10",
10
10
  ]
11
11
  license = {text = "GPL"}
12
12
  description = "Ever wish you had a few minutes to undo an rm? Now you do!"
13
13
  urls = {Homepage = "https://github.com/zwimer/delayed_rm"}
14
- requires-python = ">= 3.8"
14
+ requires-python = ">= 3.10"
15
15
  dynamic = ["version"]
16
16
 
17
17
  [project.readme]
@@ -38,7 +38,7 @@ version = {attr = "delayed_rm.__version__"}
38
38
 
39
39
  [tool.black]
40
40
  line-length = 120
41
- target-version = ["py38"]
41
+ target-version = ["py310"]
42
42
 
43
43
  [tool.ruff]
44
44
  ignore=["E731","E741"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -1,28 +0,0 @@
1
- [metadata]
2
- name = delayed_rm
3
- version = attr: delayed_rm.__version__
4
- url = https://github.com/zwimer/delayed_rm
5
- classifiers =
6
- Programming Language :: Python :: 3
7
- Programming Language :: Python :: 3.8
8
- license = GPL
9
- license_files = LICENSE
10
- description = Ever wish you had a few minutes to undo an rm? Now you do!
11
- long_description = file: README.md
12
- long_description_content_type = text/markdown
13
-
14
- [options]
15
- python_requires = >= 3.8
16
- packages = find:
17
-
18
- [options.package_data]
19
- delayed_rm = py.typed
20
-
21
- [options.entry_points]
22
- console_scripts =
23
- delayed_rm = delayed_rm:cli
24
-
25
- [egg_info]
26
- tag_build =
27
- tag_date = 0
28
-
File without changes
File without changes