splitlog 3.0.1__tar.gz → 4.0.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,31 +1,29 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: splitlog
3
- Version: 3.0.1
3
+ Version: 4.0.0
4
4
  Summary: Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy
5
5
  Home-page: https://github.com/splitlog/splitlog.git
6
6
  License: MIT
7
7
  Author: Sebastian Klemke
8
8
  Author-email: pypi@nerdheim.de
9
- Requires-Python: >=3.8.0,<4.0.0
9
+ Requires-Python: >=3.9.0,<4.0.0
10
10
  Classifier: Development Status :: 5 - Production/Stable
11
11
  Classifier: Environment :: Console
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: License :: OSI Approved :: MIT License
14
14
  Classifier: Operating System :: OS Independent
15
15
  Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.8
17
16
  Classifier: Programming Language :: Python :: 3.9
18
17
  Classifier: Programming Language :: Python :: 3.10
19
18
  Classifier: Programming Language :: Python :: 3.11
20
19
  Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
21
  Classifier: Programming Language :: Python :: 3 :: Only
22
22
  Classifier: Topic :: System :: Distributed Computing
23
23
  Classifier: Topic :: System :: Logging
24
24
  Classifier: Topic :: Utilities
25
- Requires-Dist: importlib-metadata (>=6.8.0,<7.0.0)
26
- Requires-Dist: poetry (>=1.8.3,<2.0.0)
27
- Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
28
- Requires-Dist: pytz (>=2023.3)
25
+ Requires-Dist: python-dateutil (>=2.9.0,<3.0.0)
26
+ Requires-Dist: pytz (>=2024.2)
29
27
  Project-URL: Repository, https://github.com/splitlog/splitlog.git
30
28
  Description-Content-Type: text/markdown
31
29
 
@@ -70,7 +68,7 @@ out
70
68
 
71
69
  Installation
72
70
  ------------
73
- Python 3.7+ must be available. Installation via [pipx](https://pypi.org/project/pipx/):
71
+ Python 3.9+ must be available. Installation via [pipx](https://pypi.org/project/pipx/):
74
72
 
75
73
  ```shell script
76
74
  pipx install splitlog
@@ -39,7 +39,7 @@ out
39
39
 
40
40
  Installation
41
41
  ------------
42
- Python 3.7+ must be available. Installation via [pipx](https://pypi.org/project/pipx/):
42
+ Python 3.9+ must be available. Installation via [pipx](https://pypi.org/project/pipx/):
43
43
 
44
44
  ```shell script
45
45
  pipx install splitlog
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "splitlog"
3
- version = "3.0.1"
3
+ version = "4.0.0"
4
4
  description = "Utility to split aggregated logs from Apache Hadoop Yarn applications into a folder hierarchy"
5
5
  authors = ["Sebastian Klemke <pypi@nerdheim.de>"]
6
6
  license = "MIT"
@@ -18,26 +18,24 @@ classifiers = [
18
18
  repository = "https://github.com/splitlog/splitlog.git"
19
19
 
20
20
  [tool.poetry.dependencies]
21
- python = "^3.8.0"
22
- python-dateutil = "^2.8.2"
23
- pytz = ">=2023.3"
24
- importlib-metadata = "^6.8.0"
25
- poetry = "^1.8.3"
21
+ python = "^3.9.0"
22
+ python-dateutil = "^2.9.0"
23
+ pytz = ">=2024.2"
26
24
 
27
25
  [tool.poetry.scripts]
28
26
  splitlog = 'splitlog.__main__:main'
29
27
 
30
28
  [tool.poetry.group.dev.dependencies]
31
- mypy = "^1.6.0"
32
- black = ">=23.9.1,<25.0.0"
33
- types-python-dateutil = "^2.8.19.14"
34
- pytest = "^7.4.2"
35
- pytest-cov = "^4.1.0"
29
+ mypy = "^1.13.0"
30
+ black = "^24.10.0"
31
+ types-python-dateutil = "^2.9.0.20240316"
32
+ pytest = "^8.3.3"
33
+ pytest-cov = "^5.0.0"
36
34
 
37
35
  [tool.poetry-dynamic-versioning]
38
36
  enable = false
39
37
  dirty = true
40
38
 
41
39
  [build-system]
42
- requires = ["poetry-core>=1.6.0", "poetry-dynamic-versioning"]
40
+ requires = ["poetry-core>=1.8.0", "poetry-dynamic-versioning"]
43
41
  build-backend = "poetry_dynamic_versioning.backend"
@@ -1,5 +1,6 @@
1
1
  import argparse
2
2
  import sys
3
+ from importlib.metadata import distribution
3
4
  from pathlib import Path
4
5
  from typing import BinaryIO, List, NamedTuple, Optional
5
6
 
@@ -86,8 +87,6 @@ def _open_input(file: Optional[Path]) -> BinaryIO:
86
87
 
87
88
 
88
89
  def _version_exit():
89
- from importlib_metadata import distribution
90
-
91
90
  metadata = distribution(_NAME)
92
91
 
93
92
  version = metadata.version
File without changes
File without changes