Skip to content

Commit 96a231a

Browse files
authored
Merge pull request #458 from jchanvfx/updates
Updates
2 parents a8fa9b3 + 38f62b1 commit 96a231a

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</a>
1212
</p>
1313

14-
NodeGraphQt is a node graph UI framework written in `PySide2` that can be re-implemented.
14+
NodeGraphQt is a node graph UI framework written in python using `Qt`.
1515

1616
<img src="https://raw.githubusercontent.com/jchanvfx/NodeGraphQt/main/docs/_images/screenshot.png" width="100%" title="NodeGraphQt">
1717

docs/examples/ex_menu.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ can override context menus on a per node type basis.
6464
.. code-block:: python
6565
:linenos:
6666
67-
from NodeGraphQt import BaseNode, NodeGraph, setup_context_menu
67+
from NodeGraphQt import BaseNode, NodeGraph
6868
6969
# define a couple example nodes.
7070
class FooNode(BaseNode):
@@ -90,9 +90,6 @@ can override context menus on a per node type basis.
9090
node_graph.register_node(FooNode)
9191
node_graph.register_node(BarNode)
9292
93-
# set up default menu commands.
94-
setup_context_menu(node_graph)
95-
9693
# get the nodes menu.
9794
nodes_menu = node_graph.get_context_menu('nodes')
9895

docs/index.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ NodeGraphQt |version_str|
44
.. image:: _images/logo.png
55
:align: center
66

7-
NodeGraphQt a node graph UI framework written in python that can be implemented
8-
and re-purposed into applications supporting PySide2.
7+
NodeGraphQt a node graph UI framework written in python that can be implemented.
98

109
.. image:: _images/screenshot.png
1110

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Qt.py>=1.3.0
1+
Qt.py>=1.4.1

setup.cfg

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ packages = find:
2121
include_package_data = True
2222
python_requires = >=3.6
2323
install_requires =
24-
Qt.py>=1.2.0
25-
26-
[options.extras_require]
27-
PySide2 = PySide2>=5.15
24+
Qt.py>=1.4.1
2825

2926
[options.packages.find]
3027
exclude = examples

0 commit comments

Comments
 (0)