Skip to content

Commit a7fd6e9

Browse files
authored
Added Hatch badge to the readme. (#7)
Used double quotes for Tkinter sequence names in the readme for consistency (because Ruff converted all single quotes to double quotes in the code).
1 parent 12f467d commit a7fd6e9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Scrollable containers are currently available for the following GUI toolkits.
2020
to: the Tcl Core Team, the Python Software Foundation, the wxWidgets Team, the wxPython Team, the Qt Company and
2121
Riverbank Computing.**
2222

23+
[![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
24+
2325
[![lint](https://github.com/tfpf/ScrollableContainers/actions/workflows/lint.yml/badge.svg)](https://github.com/tfpf/ScrollableContainers/actions/workflows/lint.yml)
2426
[![install](https://github.com/tfpf/ScrollableContainers/actions/workflows/install.yml/badge.svg)](https://github.com/tfpf/ScrollableContainers/actions/workflows/install.yml)
2527
[![build](https://github.com/tfpf/ScrollableContainers/actions/workflows/build.yml/badge.svg)](https://github.com/tfpf/ScrollableContainers/actions/workflows/build.yml)
@@ -41,7 +43,7 @@ Add widgets to the `frame` attribute of a `ScrollableFrameTk` object.
4143
* Horizontally centres the contents if the window is wider.
4244

4345
### Notes
44-
`'<Button-4>'`, `'<Button-5>'` and `'<MouseWheel>'` are bound to all widgets using `bind_all` to handle mouse wheel
46+
`"<Button-4>"`, `"<Button-5>"` and `"<MouseWheel>"` are bound to all widgets using `bind_all` to handle mouse wheel
4547
scroll events. Do not `unbind_all` (or `bind_all` another function to) these three sequences!
4648

4749
# wxPython

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "ScrollableContainers"
7-
version = "2.0.2"
7+
version = "2.0.3"
88
authors = [
99
{ name = "Vishal Pankaj Chandratreya" },
1010
]

0 commit comments

Comments
 (0)