progress-table 3.1.1__tar.gz → 3.1.2__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: progress-table
3
- Version: 3.1.1
3
+ Version: 3.1.2
4
4
  Summary: Display progress as a pretty table in the command line.
5
5
  Project-URL: Home, https://github.com/gahaalt/progress-table
6
6
  Project-URL: Documentation, https://github.com/sjmikler/progress-table/blob/main/docs
@@ -19,18 +19,14 @@ Classifier: Programming Language :: Python :: 3.13
19
19
  Requires-Python: >=3.7
20
20
  Requires-Dist: colorama
21
21
  Provides-Extra: dev
22
- Requires-Dist: black; extra == 'dev'
23
- Requires-Dist: build; extra == 'dev'
24
- Requires-Dist: isort; extra == 'dev'
22
+ Requires-Dist: hatch; extra == 'dev'
23
+ Requires-Dist: pyright; extra == 'dev'
24
+ Requires-Dist: pytest; extra == 'dev'
25
+ Requires-Dist: pytest-cov; extra == 'dev'
26
+ Requires-Dist: ruff; extra == 'dev'
25
27
  Requires-Dist: twine; extra == 'dev'
26
28
  Description-Content-Type: text/markdown
27
29
 
28
- > Version 2.x.x introduces new features and new interactive modes.
29
- >
30
- > Version 3.x.x improves compatibility and stability.
31
- >
32
- > New features allow for previously impossible applications, see examples below.
33
-
34
30
  # Progress Table
35
31
 
36
32
  [![PyPi version](https://img.shields.io/badge/dynamic/json?label=latest&query=info.version&url=https%3A%2F%2Fpypi.org%2Fpypi%2Fprogress-table%2Fjson)](https://pypi.org/project/progress-table)
@@ -1,9 +1,3 @@
1
- > Version 2.x.x introduces new features and new interactive modes.
2
- >
3
- > Version 3.x.x improves compatibility and stability.
4
- >
5
- > New features allow for previously impossible applications, see examples below.
6
-
7
1
  # Progress Table
8
2
 
9
3
  [![PyPi version](https://img.shields.io/badge/dynamic/json?label=latest&query=info.version&url=https%3A%2F%2Fpypi.org%2Fpypi%2Fprogress-table%2Fjson)](https://pypi.org/project/progress-table)
@@ -1,9 +1,3 @@
1
- > Version 2.x.x introduces new features and new interactive modes.
2
- >
3
- > Version 3.x.x improves compatibility and stability.
4
- >
5
- > New features allow for previously impossible applications, see examples below.
6
-
7
1
  # Progress Table
8
2
 
9
3
  [![PyPi version](https://img.shields.io/badge/dynamic/json?label=latest&query=info.version&url=https%3A%2F%2Fpypi.org%2Fpypi%2Fprogress-table%2Fjson)](https://pypi.org/project/progress-table)
@@ -10,7 +10,7 @@ Supported features:
10
10
  """
11
11
 
12
12
  __license__ = "MIT"
13
- __version__ = "3.1.1"
13
+ __version__ = "3.1.2"
14
14
  __author__ = "Szymon Mikler"
15
15
 
16
16
  from progress_table.progress_table import ProgressTable, styles
@@ -30,7 +30,7 @@ Home = "https://github.com/gahaalt/progress-table"
30
30
  Documentation = "https://github.com/sjmikler/progress-table/blob/main/docs"
31
31
 
32
32
  [project.optional-dependencies]
33
- dev = ["black", "isort", "build", "twine"]
33
+ dev = ["ruff", "pyright", "pytest", "pytest-cov", "hatch", "twine"]
34
34
 
35
35
  [tool.hatch.version]
36
36
  path = "progress_table/__init__.py"