persidict 0.105.1__tar.gz → 0.105.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: persidict
3
- Version: 0.105.1
3
+ Version: 0.105.4
4
4
  Summary: Simple persistent key-value store for Python. Values are stored as files on a disk or as S3 objects on AWS cloud.
5
5
  Keywords: persistence,dicts,distributed,parallel
6
6
  Author: Vlad (Volodymyr) Pavlov
@@ -25,7 +25,7 @@ Requires-Dist: joblib
25
25
  Requires-Dist: jsonpickle
26
26
  Requires-Dist: deepdiff
27
27
  Requires-Dist: boto3
28
- Requires-Dist: sphinx-rtd-theme==3.0.2
28
+ Requires-Dist: sphinx-rtd-theme
29
29
  Requires-Dist: boto3 ; extra == 'aws'
30
30
  Requires-Dist: numpy ; extra == 'dev'
31
31
  Requires-Dist: pandas ; extra == 'dev'
@@ -41,7 +41,7 @@ Description-Content-Type: text/markdown
41
41
  # persidict
42
42
 
43
43
  [![PyPI version](https://img.shields.io/pypi/v/persidict.svg)](https://pypi.org/project/persidict/)
44
- [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://pypi.org/project/persidict/)
44
+ [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://github.com/pythagoras-dev/persidict)
45
45
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
46
46
  [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
47
47
  [![Documentation Status](https://app.readthedocs.org/projects/persidict/badge/?version=latest)](https://persidict.readthedocs.io/en/latest/)
@@ -1,7 +1,7 @@
1
1
  # persidict
2
2
 
3
3
  [![PyPI version](https://img.shields.io/pypi/v/persidict.svg)](https://pypi.org/project/persidict/)
4
- [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://pypi.org/project/persidict/)
4
+ [![Python versions](https://img.shields.io/pypi/pyversions/persidict.svg)](https://github.com/pythagoras-dev/persidict)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
6
  [![Downloads](https://static.pepy.tech/badge/persidict)](https://pepy.tech/project/persidict)
7
7
  [![Documentation Status](https://app.readthedocs.org/projects/persidict/badge/?version=latest)](https://persidict.readthedocs.io/en/latest/)
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "persidict"
7
- version = "0.105.1"
7
+ version = "0.105.4"
8
8
  description = "Simple persistent key-value store for Python. Values are stored as files on a disk or as S3 objects on AWS cloud."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -35,7 +35,7 @@ dependencies = [
35
35
  "jsonpickle",
36
36
  "deepdiff",
37
37
  "boto3",
38
- "sphinx-rtd-theme==3.0.2",
38
+ "sphinx-rtd-theme",
39
39
  ]
40
40
 
41
41
  [project.urls]
@@ -11,8 +11,6 @@ Classes:
11
11
  FileDirDict: A dictionary that stores key-value pairs as files on a
12
12
  local hard drive. Keys compose filenames, values are stored as
13
13
  pickle or JSON objects.
14
- S3Dict_Legacy: A dictionary that stores key-value pairs as S3 objects on AWS.
15
- Keys compose object names, values are stored as pickle or JSON S3 objects.
16
14
  BasicS3Dict: A basic S3-backed dictionary with direct S3 operations.
17
15
  WriteOnceDict: A write-once wrapper that prevents modification of existing
18
16
  items after initial storage.
@@ -1,4 +1,4 @@
1
- """S3Dict_FileDirCached implementation that mimics S3Dict_Legacy but uses BasicS3Dict, FileDirDict, and cached classes."""
1
+ """S3Dict_FileDirCached implementation that uses BasicS3Dict, FileDirDict, and cached classes."""
2
2
 
3
3
  from __future__ import annotations
4
4