File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #### 3.0.0
2+ * ** Removed Python 2.7 support**
3+ * ** Added Python 3.8 support**
4+ * Renamed package name to ` styleframe ` (all lowercase) in accordance of PEP8
5+ * Added ` .style ` accessor. This allows for easy selection/indexing based on style, for example:
6+ ` sf.loc[sf['col_name'].style.bg_color == utils.colors.yellow] `
7+
8+ or
9+
10+ ` sf.loc[~sf['col_name'].style.bold] `
11+
12+ * Added ` default_grid ` to ` utils.borders ` to allow usage of the default spreadsheet grid
13+ * Added ` read_excel_as_template ` method
14+ * Fixed a bug that prevented saving if ` read_excel ` was used with ` use_openpxl_style=True ` , see github issue #67
15+ * Allowing usage of pathlib.Path in ` to_excel ` , see github issue #69
16+
117#### 2.0.5
218* ` style_alternate_rows ` can accept all arguments that ` apply_style_by_indexes ` accepts as kwargs.
319* Added ` cols_to_style ` argument to ` apply_headers_style `
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def get_all_versions():
1717 return _versions_
1818
1919
20- _version_ = '2 .0.5 '
20+ _version_ = '3 .0.0 '
2121_python_version_ = get_python_version ()
2222_pandas_version_ = get_pandas_version ()
2323_openpyxl_version_ = get_openpyxl_version ()
You can’t perform that action at this time.
0 commit comments