pyPreservica 2.2.0__tar.gz → 2.2.1__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.
Files changed (23) hide show
  1. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/PKG-INFO +1 -1
  2. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/__init__.py +1 -1
  3. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/entityAPI.py +1 -1
  4. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica.egg-info/PKG-INFO +1 -1
  5. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/setup.py +1 -1
  6. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/LICENSE.txt +0 -0
  7. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/README.md +0 -0
  8. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/adminAPI.py +0 -0
  9. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/authorityAPI.py +0 -0
  10. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/common.py +0 -0
  11. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/contentAPI.py +0 -0
  12. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/monitorAPI.py +0 -0
  13. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/opex.py +0 -0
  14. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/parAPI.py +0 -0
  15. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/retentionAPI.py +0 -0
  16. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/uploadAPI.py +0 -0
  17. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/webHooksAPI.py +0 -0
  18. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica/workflowAPI.py +0 -0
  19. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica.egg-info/SOURCES.txt +0 -0
  20. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica.egg-info/dependency_links.txt +0 -0
  21. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica.egg-info/requires.txt +0 -0
  22. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/pyPreservica.egg-info/top_level.txt +0 -0
  23. {pyPreservica-2.2.0 → pyPreservica-2.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyPreservica
3
- Version: 2.2.0
3
+ Version: 2.2.1
4
4
  Summary: Python library for the Preservica API
5
5
  Home-page: https://pypreservica.readthedocs.io/
6
6
  Author: James Carr
@@ -23,6 +23,6 @@ from .authorityAPI import AuthorityAPI, Table
23
23
  __author__ = "James Carr (drjamescarr@gmail.com)"
24
24
 
25
25
  # Version of the Preservica API package
26
- __version__ = "2.2.0"
26
+ __version__ = "2.2.1"
27
27
 
28
28
  __license__ = "Apache License Version 2.0"
@@ -1708,7 +1708,7 @@ class EntityAPI(AuthenticatedAPI):
1708
1708
  if isinstance(entity, ContentObject):
1709
1709
  raise RuntimeError("Thumbnails cannot be added to Content Objects")
1710
1710
 
1711
- headers = {HEADER_TOKEN: self.token} # , 'Content-Type': 'application/octet-stream'}
1711
+ headers = {HEADER_TOKEN: self.token, 'Content-Type': 'application/octet-stream'}
1712
1712
 
1713
1713
  with open(image_file, 'rb') as fd:
1714
1714
  request = self.session.put(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyPreservica
3
- Version: 2.2.0
3
+ Version: 2.2.1
4
4
  Summary: Python library for the Preservica API
5
5
  Home-page: https://pypreservica.readthedocs.io/
6
6
  Author: James Carr
@@ -21,7 +21,7 @@ if sys.argv[-1] == 'publish':
21
21
  # This call to setup() does all the work
22
22
  setup(
23
23
  name=PKG,
24
- version="2.2.0",
24
+ version="2.2.1",
25
25
  description="Python library for the Preservica API",
26
26
  long_description=README,
27
27
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes