Skip to content

Commit a52b889

Browse files
authored
Merge pull request #16 from sirfuzzalot/feat/pin-textual-to-01-02
feat: pin textual to less than 0.2
2 parents 787733e + 1dc4503 commit a52b889

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package_dir =
3333
packages = find:
3434
python_requires = >=3.7
3535
install_requires =
36-
textual >= 0.1.10
36+
textual >= 0.1.10,< 0.2
3737

3838
[options.packages.find]
3939
where = src

src/textual_inputs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .integer_input import IntegerInput
22
from .text_input import TextInput
33

4-
__version__ = "0.2.0"
4+
__version__ = "0.2.1"
55

66
__all__ = ["IntegerInput", "TextInput"]

0 commit comments

Comments
 (0)