Skip to content

Commit 118b71c

Browse files
committed
Version 3.2.1
1 parent d7096c5 commit 118b71c

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ pip install "netbox-initializers==3.2.*"
1414
At first you need to start with writing the YAML files that contain the initial data. To make that easier the plugin includes example files for all supported initializers. To access those examples you can copy them into a directory of your choosing and edit them there. To copy the files run the following command (in your Netbox directory):
1515

1616
```bash
17-
./manage.py ./manage.py copy_initializers_examples --path /path/for/example/files
17+
./manage.py copy_initializers_examples --path /path/for/example/files
1818
```
1919

2020
After you filled in the data you want to import, the import can be started with this command:
2121

2222
```bash
23-
./manage.py ./manage.py load_initializer_data --path /path/for/example/files
23+
./manage.py load_initializer_data --path /path/for/example/files
2424
```
2525

2626

src/netbox_initializers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class NetBoxInitializersConfig(PluginConfig):
55
name = 'netbox_initializers'
66
verbose_name = 'NetBox Initializers'
77
description = 'Load initial data into Netbox'
8-
version = '3.2.0'
8+
version = '3.2.1'
99
base_url = 'initializers'
1010
min_version = '3.2.0'
1111
max_version = '3.2.99'

src/setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
from setuptools import find_packages, setup
22

33
from pathlib import Path
4-
this_directory = Path(__file__).parent
54

5+
6+
this_directory = Path(__file__).parent
67
long_description = (this_directory / ".." / "README.md").read_text()
78

89
setup(
910
name="netbox-initializers",
10-
version="3.2.0",
11+
version="3.2.1",
1112
description="Load initial data into Netbox",
1213
install_requires=["ruamel.yaml==0.17.21"],
1314
packages=find_packages() + ["netbox_initializers.initializers.yaml"],
1415
package_data={"netbox_initializers.initializers.yaml": ["*.yml"]},
1516
include_package_data=True,
1617
zip_safe=False,
1718
long_description=long_description,
18-
long_description_content_type='text/markdown'
19+
long_description_content_type="text/markdown",
1920
)

0 commit comments

Comments
 (0)