-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b5b349
commit b78408f
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
|
||
## [0.1.2] - 2024-04-17 | ||
### Changed | ||
- Migrated to newer dependency package versions. | ||
- Dropping support for EOL Python versions. | ||
|
||
## [0.1.1] - 2022-09-21 | ||
### Added | ||
- Datasets are made accessible via package namespace. | ||
|
||
|
||
|
||
[unreleased]: https://github.com/m-martin-j/fcbf/compare/v0.1.2...HEAD | ||
|
||
[0.1.2]: https://github.com/m-martin-j/fcbf/compare/v0.1.1...v0.1.2 | ||
[0.1.1]: https://github.com/m-martin-j/fcbf/releases/tag/v0.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
__author__ = 'Martin Trat' | ||
__email__ = '[email protected]' | ||
__license__ = 'MIT' | ||
__version__ = '0.1.1' | ||
__version__ = '0.1.2' | ||
|
||
|
||
from .fcbf import fcbf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "fcbf" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
description = "Categorical feature selection based on information theoretical considerations" | ||
readme = "DESCRIPTION.md" | ||
authors = ["Martin Trat <[email protected]>"] | ||
|