mirror of
https://github.com/inventree/InvenTree.git
synced 2025-11-13 19:36:46 +00:00
* Bump dummy plugin version - Required, else newer versions fail CI * Bump version number to 1.0.1
14 lines
339 B
Python
14 lines
339 B
Python
"""Sample plugin for versioning."""
|
|
|
|
from plugin import InvenTreePlugin
|
|
|
|
|
|
class VersionPlugin(InvenTreePlugin):
|
|
"""A small version sample."""
|
|
|
|
SLUG = 'sampleversion'
|
|
NAME = 'Sample Version Plugin'
|
|
DESCRIPTION = 'A simple plugin which shows how to use the version limits'
|
|
MIN_VERSION = '0.1.0'
|
|
MAX_VERSION = '2.0.0'
|