Skip to content

Commit

Permalink
Merge pull request #158 from DHI/bug/matplotlib_dependency
Browse files Browse the repository at this point in the history
Bug/matplotlib dependency
  • Loading branch information
ryan-kipawa authored Jan 14, 2025
2 parents 601e43a + 6f76af8 commit 65087d9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@

### Changed

## [1.0.2] - 2025-01-14

### Fixed
- Matplotlib is now included as a dependency, avoiding import errors on fresh install

## [1.0.1] - 2025-01-13

### Fixed
Expand Down Expand Up @@ -245,7 +250,9 @@
- Reading of res1d and xns11 files into pandas data frames


[unreleased]: https://github.com/DHI/mikeio1d/compare/v1.0.0...HEAD
[unreleased]: https://github.com/DHI/mikeio1d/compare/v1.0.2...HEAD
[1.0.2]: https://github.com/DHI/mikeio1d/releases/tag/v1.0.2
[1.0.1]: https://github.com/DHI/mikeio1d/releases/tag/v1.0.1
[1.0.0]: https://github.com/DHI/mikeio1d/releases/tag/v1.0.0
[0.10.0]: https://github.com/DHI/mikeio1d/releases/tag/v0.10.0
[0.9.1]: https://github.com/DHI/mikeio1d/releases/tag/v0.9.1
Expand Down
2 changes: 1 addition & 1 deletion mikeio1d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#
__version__ = "1.0.1"
__version__ = "1.0.2"

if "64" not in platform.architecture()[0]:
raise Exception("This library has not been tested for a 32 bit system.")
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude = ["notebooks", "tests", "images"]

[project]
name = "mikeio1d"
version = "1.0.1"
version = "1.0.2"
description = "A package that uses the DHI MIKE1D .NET libraries to read res1d and xns11 files."
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -46,6 +46,7 @@ dependencies = [
"pythonnet>=3.0.0",
"numpy",
"pandas>=2.1.0",
"matplotlib",
'mikecore; platform_system=="Linux"'
]

Expand Down

0 comments on commit 65087d9

Please sign in to comment.