Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.14']
fail-fast: true
runs-on: ${{ matrix.os }}

Expand Down
4 changes: 3 additions & 1 deletion nxt/nxt_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ class INTERNAL_ATTRS(object):
CACHED_CODE = _prefix + 'cached_code'
# List of python attrs that a node will have but we don't want to parse or
# considering in our composite logic
BUILTINS = tuple(dir(type('NodeSpec', (object,), {})))
class _NodeSpec(object):
pass
BUILTINS = tuple(dir(_NodeSpec))
# A list of node attrs that are used internally in our composite logic but
# tracked and like user attrs with a `_source__nxt` meta attr
TRACKED = (COMPUTE, EXECUTE_IN, COMMENT, START_POINT, ENABLED,
Expand Down
2 changes: 2 additions & 0 deletions nxt/plugin_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ def load_plugins():
if not os.path.isdir(plugin_dir):
continue
for file_name in os.listdir(plugin_dir):
if not file_name.endswith('.py'):
continue
mod_name, _ = os.path.splitext(file_name)
if mod_name in _nxt_loaded_plugin_module_names:
continue
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
long_description_content_type="text/markdown",
url="https://github.com/nxt-dev/nxt",
packages=setuptools.find_packages(),
python_requires='>=3.7, <3.12',
python_requires='>=3.7, <3.15',
entry_points={
'console_scripts': [
'nxt=nxt.cli:main',
Expand Down