Skip to content

Commit 28e51d6

Browse files
author
kx79wq
committed
REL: bump up histogrammar version to v1.1.0
Bump up version number to 1.1 in histograms
1 parent c01c461 commit 28e51d6

14 files changed

+15
-15
lines changed

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ more quickly via Numpy commands, rather than Python for loops.
1717

1818
This Python implementation of histogrammar been tested to guarantee compatibility with its Scala implementation.
1919

20-
Latest Python release: v1.0.34 (Dec 2024).
20+
Latest Python release: v1.1.0 (Dec 2024).
2121
Latest update: Dec 2024.
2222

2323
References

Diff for: histogrammar/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import re
44
from typing import Tuple
55

6-
version = "1.0.34"
6+
version = "1.1.0"
77

88

99
def split_version_string(version_string: str) -> Tuple[int, int]:

Diff for: tests/resources/age.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@
8686
"nanflow:type": "Count",
8787
"origin": 0.0},
8888
"type": "SparselyBin",
89-
"version": "1.0"}
89+
"version": "1.1"}

Diff for: tests/resources/company.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,4 +401,4 @@
401401
"bins:type": "Count",
402402
"entries": 400.0},
403403
"type": "Categorize",
404-
"version": "1.0"}
404+
"version": "1.1"}

Diff for: tests/resources/date.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
"nanflow:type": "Count",
1919
"origin": 1262563200000000000},
2020
"type": "SparselyBin",
21-
"version": "1.0"}
21+
"version": "1.1"}

Diff for: tests/resources/eyesColor.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"bins:type": "Count",
77
"entries": 400.0},
88
"type": "Categorize",
9-
"version": "1.0"}
9+
"version": "1.1"}

Diff for: tests/resources/gender.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"bins:type": "Count",
33
"entries": 400.0},
44
"type": "Categorize",
5-
"version": "1.0"}
5+
"version": "1.1"}

Diff for: tests/resources/isActive.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"bins:type": "Count",
33
"entries": 400.0},
44
"type": "Categorize",
5-
"version": "1.0"}
5+
"version": "1.1"}

Diff for: tests/resources/isActive_age.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,4 +156,4 @@
156156
"bins:type": "SparselyBin",
157157
"entries": 400.0},
158158
"type": "Categorize",
159-
"version": "1.0"}
159+
"version": "1.1"}

Diff for: tests/resources/latitude.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
"nanflow:type": "Count",
4242
"origin": 0},
4343
"type": "SparselyBin",
44-
"version": "1.0"}
44+
"version": "1.1"}

Diff for: tests/resources/latitude_longitude.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -595,4 +595,4 @@
595595
"nanflow:type": "Count",
596596
"origin": 0},
597597
"type": "SparselyBin",
598-
"version": "1.0"}
598+
"version": "1.1"}

Diff for: tests/resources/longitude.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@
7878
"nanflow:type": "Count",
7979
"origin": 0},
8080
"type": "SparselyBin",
81-
"version": "1.0"}
81+
"version": "1.1"}

Diff for: tests/resources/transaction.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,5 @@
114114
"nanflow:type": "Count",
115115
"nanflow": 0.0
116116
},
117-
"version": "1.0"
117+
"version": "1.1"
118118
}

Diff for: tests/test_spark_histogrammar.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def test_get_histograms_timestamp(spark_co):
207207
"origin": 1.2625632e18,
208208
},
209209
"type": "SparselyBin",
210-
"version": "1.0",
210+
"version": "1.1",
211211
}
212212
filler = SparkHistogrammar(features=["dt"])
213213
current_hists = filler.get_histograms(sdf)
@@ -251,7 +251,7 @@ def test_get_histograms_date(spark_co):
251251
"origin": 1.2625632e18,
252252
},
253253
"type": "SparselyBin",
254-
"version": "1.0",
254+
"version": "1.1",
255255
}
256256
filler = SparkHistogrammar(features=["dt"])
257257
current_hists = filler.get_histograms(sdf)

0 commit comments

Comments
 (0)