acadplot 0.1.1__tar.gz → 0.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,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: acadplot
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A simple plotting tool using matplotlib for generating plots and subplots for research papers.
5
5
  Author: Sudip Bhujel
6
6
  Author-email: Sudip Bhujel <code@sudipbhujel.com.np>
7
7
  License-Expression: MIT
8
8
  License-File: LICENSE
9
9
  Requires-Dist: matplotlib>=3.10.8
10
- Requires-Python: >=3.14
10
+ Requires-Python: >=3.12
11
11
  Description-Content-Type: text/markdown
12
12
 
13
13
  # AcadPlot
@@ -115,7 +115,7 @@ pip install -e .
115
115
 
116
116
  ## Requirements
117
117
 
118
- - Python >= 3.14
118
+ - Python >= 3.12
119
119
  - matplotlib >= 3.10.8
120
120
 
121
121
  ## Usage
@@ -103,7 +103,7 @@ pip install -e .
103
103
 
104
104
  ## Requirements
105
105
 
106
- - Python >= 3.14
106
+ - Python >= 3.12
107
107
  - matplotlib >= 3.10.8
108
108
 
109
109
  ## Usage
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "acadplot"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "A simple plotting tool using matplotlib for generating plots and subplots for research papers."
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -8,7 +8,7 @@ license-files = ["LICENSE"]
8
8
  authors = [
9
9
  { name = "Sudip Bhujel", email = "code@sudipbhujel.com.np" }
10
10
  ]
11
- requires-python = ">=3.14"
11
+ requires-python = ">=3.12"
12
12
  dependencies = [
13
13
  "matplotlib>=3.10.8",
14
14
  ]
@@ -31,7 +31,7 @@ from .utils import (
31
31
  theme_preview,
32
32
  )
33
33
 
34
- __version__ = "0.1.1"
34
+ __version__ = "0.1.2"
35
35
  __all__ = [
36
36
  "plot_line",
37
37
  "plot_bar",
@@ -264,7 +264,7 @@ def plot_box(
264
264
 
265
265
  box = ax.boxplot(
266
266
  values,
267
- labels=labels,
267
+ tick_labels=labels,
268
268
  patch_artist=True,
269
269
  widths=0.55,
270
270
  medianprops=dict(color=str(style["axis_color"])),
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes