Skip to content

Commit 199d435

Browse files
authored
Merge pull request #4 Fix URLs on pypi
Fix URLs on pypi
2 parents 68134d6 + 54782b0 commit 199d435

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PROJECT=nornir_rich
22
CODE_DIRS=${PROJECT} tests
3-
IMG_URL=https://raw.githubusercontent.com/InfrastructureAsCode-ch/nornir-rich/main/docs/imgs/
3+
IMG_URL=https://raw.githubusercontent.com/InfrastructureAsCode-ch/nornir_rich/main/docs/imgs/
44

55
# Run pytest
66
.PHONY: pytest

nornir_rich/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.3" # From Makefile
1+
__version__ = "0.1.4" # From Makefile

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tool.poetry]
22
name = "nornir-rich"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "Collection of 'nice looking' functions with rich for nornir"
55
authors = ["ubaumann <github@m.ubaumann.ch>"]
66
license = "Apache-2.0"
77
readme = "README.md"
8-
repository = "https://github.com/InfrastructureAsCode-ch/nornir-rich"
8+
repository = "https://github.com/InfrastructureAsCode-ch/nornir_rich"
99
classifiers = [
1010
"License :: OSI Approved :: Apache Software License",
1111
"Programming Language :: Python :: 3.7",

tests/test_nornir_rich.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version() -> None:
5-
assert __version__ == "0.1.3" # From Makefile
5+
assert __version__ == "0.1.4" # From Makefile

0 commit comments

Comments
 (0)