Skip to content

Commit 5fb254a

Browse files
authored
Merge pull request #120 from kayjan/v0.14.4
v0.14.4 + fix conda meta.yaml
2 parents 793b665 + 2fccca2 commit 5fb254a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.14.4] - 2023-11-04
8+
### Changed
9+
- Misc: Clean up github actions
10+
711
## [0.14.3] - 2023-10-31
812
### Added
913
- Misc: Publish to conda, enable automated publishing to conda-forge in addition to existing PyPI.
@@ -375,6 +379,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
375379
- Utility Iterator: Tree traversal methods.
376380
- Workflow To Do App: Tree use case with to-do list implementation.
377381

382+
[0.14.4]: https://github.com/kayjan/bigtree/compare/0.14.3...0.14.4
378383
[0.14.3]: https://github.com/kayjan/bigtree/compare/0.14.2...0.14.3
379384
[0.14.2]: https://github.com/kayjan/bigtree/compare/0.14.1...0.14.2
380385
[0.14.1]: https://github.com/kayjan/bigtree/compare/0.14.0...0.14.1

bigtree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.14.3"
1+
__version__ = "0.14.4"
22

33
from bigtree.binarytree.construct import list_to_binarytree
44
from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag

conda/meta.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,7 @@ requirements:
1919
- hatchling
2020
- pip
2121
run:
22-
- python >=3.8
23-
- pandas
24-
- pydot
25-
- Pillow
22+
- python >=3.7
2623

2724
test:
2825
imports:

0 commit comments

Comments
 (0)