Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pypi-template
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package_title: MatPlus
readme: PYPI_README.md
requires: ["matplotlib", "numpy", "pandas"]
scripts: []
version: 0.2.0
version: 0.2.1
your_author_name: Liam Davis
your_email_address: davisliam123@gmail.com
your_full_name: Liam Davis
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Next Release

### Version 0.2.0
### Version 0.2.x
- Supported plots:
- BarPlot - Create customizable bar charts
- ScatterPlot - Generate scatter plots with various styling options
Expand Down
2 changes: 1 addition & 1 deletion MatPlus/BoxPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(
raise TypeError("All elements must be numeric")

# Validate data length
if not data or len(data) == 0:
if len(data) == 0:
raise ValueError("Data array cannot be empty")

# Validate whisker_length parameter
Expand Down
2 changes: 1 addition & 1 deletion MatPlus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
from MatPlus.Histogram import Histogram
from MatPlus.StemPlot import StemPlot

__version__ = "0.2.0"
__version__ = "0.2.1"
__all__ = ["ScatterPlot", "BarPlot", "BoxPlot", "LinePlot", "Histogram", "StemPlot"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ To contribute effectively to MatPlus, follow this Pull Request (PR) workflow:
3. **Make Your Changes**:
- Implement your feature or fix.
- Follow coding standards and ensure documentation consistency.
- Update the [changelog](./CHANGELOG.md) describing your changes.
- Update the [changelog](./CHANGELOG.md) describing your changes. This is only necessary for new features, not bug fixes or minor changes.

4. **Run Tests Locally**:
```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
project = "MatPlus"
copyright = "2025, Liam Davis, Ryan Ji, Surya Rao, Weixin Lin, Dhyey Mavani"
author = "Liam Davis, Ryan Ji, Surya Rao, Weixin Lin, Dhyey Mavani"
release = "0.2.0"
release = "0.2.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
18 changes: 9 additions & 9 deletions examples/box_plot.ipynb

Large diffs are not rendered by default.