Skip to content

Commit

Permalink
Minor bug fix for "other" datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
Old-Shatterhand committed May 8, 2024
1 parent 999e11a commit fd019b3
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Minimal example to reproduce the behavior. Please provide the call to DataSAIL o
A clear and concise description of what you expected to happen.

**Environment (please complete the following information):**
- OS: [e.g. MacOS, Linux, Win-64]
- DataSAIL Version [e.g. datasail v0.2.2 or datasail-lite v1.0.0]
- Python Version [e.g. Py3.10]
- other useful information about the system, e.g. usage of a WSL or docker
- OS: [e. g. MacOS, Linux, Win-64]
- DataSAIL Version: [e. g. datasail v0.2.2 or datasail-lite v1.0.0]
- Python Version: [e. g. Py3.10]
- other useful information about the system: [e. g. usage of a WSL or docker]

**Additional context**
Add any other context about the problem here. This can be everything not yet mentioned that you may find helpful for us to tackle the issue.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/question-help-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Which outcome of DataSAIL do you encounter?
Which outcome of DataSAIL do you expect? Describe how the outcome of DataSAIL confuses you.

**Environment (please complete the following information):**
- OS: [e.g. MacOS, Linux, Win-64]
- DataSAIL Version [e.g. datasail v0.2.2 or datasail-lite v1.0.0]
- Python Version [e.g. Py3.10]
- other useful information about the system, e.g. usage of a WSL or docker
- OS: [e. g. MacOS, Linux, Win-64]
- DataSAIL Version: [e. g. datasail v0.2.2 or datasail-lite v1.0.0]
- Python Version: [e. g. Py3.10]
- other useful information about the system: [e. g. usage of a WSL or docker]

**Additional context**
Add any other context or screenshots about the feature request here.
3 changes: 2 additions & 1 deletion datasail/reader/read_other.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def read_dir(ds: DataSet, path: Path) -> None:
read_data_input(data, dataset, read_dir)

dataset = read_data(weights, strats, sim, dist, inter, index, num_clusters, tool_args, dataset)
dataset = remove_duplicate_values(dataset, dataset.data)
# dataset = remove_duplicate_values(dataset, dataset.data)
dataset.id_map = {n: n for n in dataset.names}

return dataset
2 changes: 1 addition & 1 deletion datasail/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: "datasail"
version: '1.0.0'
version: '1.0.1'

source:
path: ..
Expand Down
2 changes: 1 addition & 1 deletion recipe_lite/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: "datasail-lite"
version: '1.0.0'
version: '1.0.1'

source:
path: ..
Expand Down

0 comments on commit fd019b3

Please sign in to comment.