PyInventory 0.23.0__tar.gz → 0.23.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.github/workflows/tests.yml +2 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/PKG-INFO +13 -5
- {pyinventory-0.23.0 → pyinventory-0.23.2}/README.md +12 -4
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/__init__.py +1 -1
- pyinventory-0.23.2/inventory/static/PyInventory_Logo.svg +10652 -0
- pyinventory-0.23.2/inventory/static/inventory.css +16 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/templates/admin/base_site.html +7 -3
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin_item_normal_user_create_minimal_item_2.snapshot.html +5 -5
- {pyinventory-0.23.0 → pyinventory-0.23.2}/pyproject.toml +1 -1
- {pyinventory-0.23.0 → pyinventory-0.23.2}/uv.lock +148 -84
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.editorconfig +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.gitignore +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.idea/.gitignore +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.pre-commit-config.yaml +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.pre-commit-hooks.yaml +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.run/Template Django tests.run.xml +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.run/Template Python.run.xml +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.run/manage.py --help.run.xml +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.run/manage.py make_messages.run.xml +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.run/manage.py update_req.run.xml +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/.run/unittests ___all___.run.xml +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/AUTHORS +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/LICENSE +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/dist/.gitignore +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/admin/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/admin/base.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/admin/item.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/admin/location.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/admin/memo.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/admin/tests/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/admin/tests/test_item.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/admin/tests/test_item_happy_path_1.snapshot.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/apps.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/checks.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/ckeditor_upload.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/constants.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/context_processors.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/forms.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/locale/ca/LC_MESSAGES/django.mo +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/locale/ca/LC_MESSAGES/django.po +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/locale/de/LC_MESSAGES/django.mo +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/locale/de/LC_MESSAGES/django.po +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/locale/en/LC_MESSAGES/django.mo +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/locale/en/LC_MESSAGES/django.po +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/locale/es/LC_MESSAGES/django.mo +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/locale/es/LC_MESSAGES/django.po +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/management/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/management/commands/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/management/commands/seed_data.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/management/commands/tree.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/middlewares.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0001_initial.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0002_auto_20201017_2211.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0003_auto_20201024_1830.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0004_item_user_images.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0005_serve_uploads_by_django_tools.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0006_refactor_image_model.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0007_add_file_attachment.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0008_last_check_datetime.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0009_add_memo.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0010_version_protect_models.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0011_parent_tree1.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0012_parent_tree2.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0013_alter_itemmodel_location.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0014_alter_itemmodel_description_and_more.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/0015_itemmaincategory_itemmodel_category.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/migrations/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/models/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/models/base.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/models/item.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/models/links.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/models/location.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/models/memo.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/parent_tree.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/permissions.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/persistent_filters.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/request_dict.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/signals.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/string_utils.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/templates/admin/item/mass_change_category_action.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/templates/admin/item/related_items.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/templates/admin/location/items.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/fixtures/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/fixtures/users.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/test_admin_location.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/test_admin_location_empty_change_list_1.snapshot.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/test_item_images.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/test_link_model.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/test_management_command_seed_data.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/test_management_command_tree.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/test_parent_tree.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory/tests/test_parent_tree_model.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/__main__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/middlewares.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/settings/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/settings/local.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/settings/prod.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/settings/tests.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/templates/admin/login.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/__init__.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/fixtures.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/mocks.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/playwright_utils.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin_item.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin_item_auto_group_items_1.snapshot.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin_item_login_1.snapshot.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin_item_normal_user_create_minimal_item_1.snapshot.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin_memo.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin_memo_normal_user_create_minimal_item_1.snapshot.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_admin_superuser_admin_index_1.snapshot.html +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_inventory_commands.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_inventory_commands_help_1.snapshot.txt +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_migrations.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_models_item.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_playwright_admin.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_project_setup.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/tests/test_readme_history.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/urls.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/inventory_project/wsgi.py +0 -0
- {pyinventory-0.23.0 → pyinventory-0.23.2}/manage.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyInventory
|
|
3
|
-
Version: 0.23.
|
|
3
|
+
Version: 0.23.2
|
|
4
4
|
Summary: Web based management to catalog things including state and location etc. using Python/Django.
|
|
5
5
|
Project-URL: Documentation, https://github.com/jedie/PyInventory
|
|
6
6
|
Project-URL: Source, https://github.com/jedie/PyInventory
|
|
@@ -28,7 +28,10 @@ Requires-Dist: pillow
|
|
|
28
28
|
Requires-Dist: requests
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
<h1>
|
|
32
|
+
<img src="https://raw.githubusercontent.com/jedie/PyInventory/main/inventory/static/PyInventory_Logo.svg" width="96px" alt="Logo">
|
|
33
|
+
PyInventory
|
|
34
|
+
</h1>
|
|
32
35
|
|
|
33
36
|
Web based management to catalog things including state and location etc. using Python/Django.
|
|
34
37
|
Store information in WYSIWYG-HTML-Editor field and tag them and add Files, Images and Links to them.
|
|
@@ -196,6 +199,11 @@ To make a new release, do this:
|
|
|
196
199
|
|
|
197
200
|
[comment]: <> (✂✂✂ auto generated history start ✂✂✂)
|
|
198
201
|
|
|
202
|
+
* [v0.23.2](https://github.com/jedie/PyInventory/compare/v0.23.1...v0.23.2)
|
|
203
|
+
* 2025-11-28 - Fix logo if static path is not just "/static/"
|
|
204
|
+
* [v0.23.1](https://github.com/jedie/PyInventory/compare/v0.23.0...v0.23.1)
|
|
205
|
+
* 2025-11-28 - Update README.md
|
|
206
|
+
* 2025-11-28 - Add logo
|
|
199
207
|
* [v0.23.0](https://github.com/jedie/PyInventory/compare/v0.22.1...v0.23.0)
|
|
200
208
|
* 2025-11-25 - Enhance 'Change category for selected items' and add tests for it
|
|
201
209
|
* 2025-11-25 - Update requirements
|
|
@@ -205,15 +213,15 @@ To make a new release, do this:
|
|
|
205
213
|
* [v0.22.1](https://github.com/jedie/PyInventory/compare/v0.22.0...v0.22.1)
|
|
206
214
|
* 2025-11-18 - Fix #207 "All" Category can't be selected
|
|
207
215
|
* 2025-11-18 - Update requirements
|
|
216
|
+
|
|
217
|
+
<details><summary>Expand older history entries ...</summary>
|
|
218
|
+
|
|
208
219
|
* [v0.22.0](https://github.com/jedie/PyInventory/compare/v0.21.4...v0.22.0)
|
|
209
220
|
* 2025-10-16 - Add tests for PersistentRelatedFieldListFilter
|
|
210
221
|
* 2025-09-21 - NEW: Add a persistent "Main Category"
|
|
211
222
|
* 2025-09-21 - fix for django-admin-sortable2/issues/363
|
|
212
223
|
* [v0.21.4](https://github.com/jedie/PyInventory/compare/v0.21.3...v0.21.4)
|
|
213
224
|
* 2025-09-21 - Because of PyPi download errors: release as v0.21.4
|
|
214
|
-
|
|
215
|
-
<details><summary>Expand older history entries ...</summary>
|
|
216
|
-
|
|
217
225
|
* [v0.21.3](https://github.com/jedie/PyInventory/compare/v0.21.2...v0.21.3)
|
|
218
226
|
* 2025-09-21 - Enhance change list filters by using RelatedOnlyFieldListFilter
|
|
219
227
|
* 2025-09-21 - Update requirements
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
<h1>
|
|
2
|
+
<img src="https://raw.githubusercontent.com/jedie/PyInventory/main/inventory/static/PyInventory_Logo.svg" width="96px" alt="Logo">
|
|
3
|
+
PyInventory
|
|
4
|
+
</h1>
|
|
2
5
|
|
|
3
6
|
Web based management to catalog things including state and location etc. using Python/Django.
|
|
4
7
|
Store information in WYSIWYG-HTML-Editor field and tag them and add Files, Images and Links to them.
|
|
@@ -166,6 +169,11 @@ To make a new release, do this:
|
|
|
166
169
|
|
|
167
170
|
[comment]: <> (✂✂✂ auto generated history start ✂✂✂)
|
|
168
171
|
|
|
172
|
+
* [v0.23.2](https://github.com/jedie/PyInventory/compare/v0.23.1...v0.23.2)
|
|
173
|
+
* 2025-11-28 - Fix logo if static path is not just "/static/"
|
|
174
|
+
* [v0.23.1](https://github.com/jedie/PyInventory/compare/v0.23.0...v0.23.1)
|
|
175
|
+
* 2025-11-28 - Update README.md
|
|
176
|
+
* 2025-11-28 - Add logo
|
|
169
177
|
* [v0.23.0](https://github.com/jedie/PyInventory/compare/v0.22.1...v0.23.0)
|
|
170
178
|
* 2025-11-25 - Enhance 'Change category for selected items' and add tests for it
|
|
171
179
|
* 2025-11-25 - Update requirements
|
|
@@ -175,15 +183,15 @@ To make a new release, do this:
|
|
|
175
183
|
* [v0.22.1](https://github.com/jedie/PyInventory/compare/v0.22.0...v0.22.1)
|
|
176
184
|
* 2025-11-18 - Fix #207 "All" Category can't be selected
|
|
177
185
|
* 2025-11-18 - Update requirements
|
|
186
|
+
|
|
187
|
+
<details><summary>Expand older history entries ...</summary>
|
|
188
|
+
|
|
178
189
|
* [v0.22.0](https://github.com/jedie/PyInventory/compare/v0.21.4...v0.22.0)
|
|
179
190
|
* 2025-10-16 - Add tests for PersistentRelatedFieldListFilter
|
|
180
191
|
* 2025-09-21 - NEW: Add a persistent "Main Category"
|
|
181
192
|
* 2025-09-21 - fix for django-admin-sortable2/issues/363
|
|
182
193
|
* [v0.21.4](https://github.com/jedie/PyInventory/compare/v0.21.3...v0.21.4)
|
|
183
194
|
* 2025-09-21 - Because of PyPi download errors: release as v0.21.4
|
|
184
|
-
|
|
185
|
-
<details><summary>Expand older history entries ...</summary>
|
|
186
|
-
|
|
187
195
|
* [v0.21.3](https://github.com/jedie/PyInventory/compare/v0.21.2...v0.21.3)
|
|
188
196
|
* 2025-09-21 - Enhance change list filters by using RelatedOnlyFieldListFilter
|
|
189
197
|
* 2025-09-21 - Update requirements
|