Skip to content

Commit

Permalink
textual: 0.86.1 -> 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pcboy committed Jan 2, 2025
1 parent fd4ca2f commit 7b8afe9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

buildPythonPackage rec {
pname = "textual-fastdatatable";
version = "0.10.0";
version = "0.11.0";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "tconbeer";
repo = "textual-fastdatatable";
rev = "refs/tags/v${version}";
hash = "sha256-r1evN69etFn21TkXPLuAh1OxIsurDDyPyYOKQR5uUos=";
hash = "sha256-Jz0ujO/nAnn15t8/OFOzZTpVBXNYsfVhxmYdGC39PpM=";
};

build-system = [ poetry-core ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/textual-textarea/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

buildPythonPackage rec {
pname = "textual-textarea";
version = "0.14.4";
version = "0.15.0";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "tconbeer";
repo = "textual-textarea";
rev = "refs/tags/v${version}";
hash = "sha256-tmbSCU1VgxR9aXG22UVpweD71dVmhKSRBTDm1Gf33jM=";
hash = "sha256-aaeXgD6RMQ3tlK5H/2lk3ueTyA3yYjHrYL51w/1tvSI=";
};

build-system = [ poetry-core ];
Expand Down
11 changes: 9 additions & 2 deletions pkgs/development/python-modules/textual/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
platformdirs,
poetry-core,
pytest-aiohttp,
pytest-asyncio,
pytest-xdist,
pytestCheckHook,
pythonOlder,
Expand All @@ -20,7 +21,7 @@

buildPythonPackage rec {
pname = "textual";
version = "0.86.1";
version = "1.0.0";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -29,7 +30,7 @@ buildPythonPackage rec {
owner = "Textualize";
repo = "textual";
rev = "refs/tags/v${version}";
hash = "sha256-5msCFv79nAmoaP9gZxV3DXMLTyVlSFb+qyA5jHWwc50=";
hash = "sha256-3pNUDkkq9X3W9DdWp4M4h4ddHN+GzUxLCFNJJdAtRJM=";
};

build-system = [ poetry-core ];
Expand Down Expand Up @@ -68,10 +69,16 @@ buildPythonPackage rec {
disabledTests = [
# Assertion issues
"test_textual_env_var"
"test_cursor_page_down"
"test_cursor_page_up"

# Requirements for tests are not quite ready
"test_register_language"
"test_language_binary_missing"

# https://github.com/Textualize/textual/issues/5449
"test_setting_unknown_language"
"test_update_highlight_query"
];

# Some tests in groups require state from previous tests
Expand Down

0 comments on commit 7b8afe9

Please sign in to comment.