Skip to content

Commit

Permalink
Update the git URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
Poikilos committed Dec 6, 2024
1 parent 6b02657 commit b717210
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ cython_debug/
/*.bad_json.txt
/settings.json
/.vscode/settings.json
# ^ /.vscode/settings.json is ignored since it may have python.defaultInterpreterPath with differs depending on the specific machine. Recommended: place that setting in there ("PythonOlcbNode Folder" tab in VSCode settings)
# ^ /.vscode/settings.json is ignored since it may have python.defaultInterpreterPath with differs depending on the specific machine. Recommended: place that setting in there ("python-openlcb Folder" tab in VSCode settings)
/build
/doc/_autosummary
/examples/settings.json
2 changes: 1 addition & 1 deletion examples/example_node_implementation.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def memoryReadFail(memo):
# protocols
localNode = Node(
NodeID(settings['localNodeID']),
SNIP("PythonOlcbNode", "example_node_implementation",
SNIP("python-openlcb", "example_node_implementation",
"0.1", "0.2", "User Name Here", "User Description Here"),
set([PIP.SIMPLE_NODE_IDENTIFICATION_PROTOCOL, PIP.DATAGRAM_PROTOCOL])
)
Expand Down
2 changes: 1 addition & 1 deletion examples/example_remote_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def printMessage(msg):
# protocols
localNode = Node(
NodeID(settings['localNodeID']),
SNIP("PythonOlcbNode", "example_node_implementation",
SNIP("python-openlcb", "example_node_implementation",
"0.1", "0.2", "User Name Here", "User Description Here"),
set([PIP.SIMPLE_NODE_IDENTIFICATION_PROTOCOL, PIP.DATAGRAM_PROTOCOL])
)
Expand Down
4 changes: 2 additions & 2 deletions examples/examples_gui.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""
Examples GUI
This file is part of the PythonOlcbNode project
(<https://github.com/bobjacobsen/PythonOlcbNode>).
This file is part of the python-openlcb project
(<https://github.com/bobjacobsen/python-openlcb>).
Contributors: Poikilos
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ gui = ["zeroconf"]

[project.urls]
# List of names: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#urls
Repository = "https://github.com/bobjacobsen/PythonOlcbNode"
Issues = "https://github.com/bobjacobsen/PythonOlcbNode/issues"
# Changelog = "https://github.com/bobjacobsen/PythonOlcbNode/blob/master/CHANGELOG.md"
Repository = "https://github.com/bobjacobsen/python-openlcb"
Issues = "https://github.com/bobjacobsen/python-openlcb/issues"
# Changelog = "https://github.com/bobjacobsen/python-openlcb/blob/master/CHANGELOG.md"
# ^ TODO: Uncomment this if a changelog is added (& change url to match case).
# - For a common way to use markdown for it see: https://keepachangelog.com/en/1.1.0/

0 comments on commit b717210

Please sign in to comment.