dtools.circular-array 3.12.0__tar.gz → 3.12.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.
@@ -9,10 +9,16 @@ PyPI grscheller.circular-array project.
9
9
 
10
10
  ## Releases and Important Milestones
11
11
 
12
+ ### Version 3.12.1 - PyPI release date 2025-04-22
13
+
14
+ - docstring changes
15
+ - pyproject.toml standardization
16
+
12
17
  ### Version 3.12.0 - PyPI release date 2025-04-07
13
18
 
14
19
  - API change
15
20
  - class CA[D] no longer inherits from Sequence[D]
21
+ - typing improvements
16
22
 
17
23
  ### Version 3.11.0 - PyPI release date 2025-04-06
18
24
 
@@ -31,6 +37,7 @@ PyPI grscheller.circular-array project.
31
37
  - perhaps a visual distinction is useful to tell when you
32
38
  - are dealing with user/library Python code
33
39
  - C code presenting itself as a Python class
40
+ - typing improvements
34
41
 
35
42
  ### Version 3.10.1 - PyPI release date 2025-04-03
36
43
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dtools.circular-array
3
- Version: 3.12.0
3
+ Version: 3.12.1
4
4
  Summary: ### Developer Tools - Circular Array Data Structure
5
5
  Keywords: circular array,circle array,CA,dequeue,dqueue,FIFO,LIFO,pop,push,indexable,auto-resizing,auto resizing,resizing
6
6
  Author-email: "Geoffrey R. Scheller" <geoffrey@scheller.com>
@@ -17,7 +17,6 @@ classifiers = [
17
17
  "Programming Language :: Python :: 3.13",
18
18
  "Typing :: Typed",
19
19
  ]
20
- dependencies = []
21
20
  dynamic = ["version", "description"]
22
21
  keywords = [
23
22
  "circular array",
@@ -34,9 +33,12 @@ keywords = [
34
33
  "auto resizing",
35
34
  "resizing",
36
35
  ]
36
+ dependencies = []
37
37
 
38
38
  [project.optional-dependencies]
39
- test = ["pytest >=8.3.5"]
39
+ test = [
40
+ "pytest >=8.3.5",
41
+ ]
40
42
 
41
43
  [project.urls]
42
44
  Source = "https://github.com/grscheller/dtools-circular-array"
@@ -17,20 +17,17 @@
17
17
  Package for an indexable, sliceable, auto-resizing circular array
18
18
  data structure with amortized O(1) pushes and pops either end.
19
19
 
20
- #### Circular Array Data Structure
21
-
22
- ##### *module* dtools.circular_array.ca
23
-
24
20
  Circular array data structure.
25
21
 
26
- - *class* dtools.circular_array.ca.CA
27
- - initializer takes 1 or 0 iterables
28
- - *function* dtools.circular_array.ca.ca
29
- - factory function taking a variable number of arguments
22
+ - *module* dtools.circular_array
23
+ - *class* dtools.circular_array.ca.CA
24
+ - initializer takes up to 1 iterable
25
+ - *function* dtools.circular_array.ca.ca
26
+ - factory function taking a variable number of arguments
30
27
 
31
28
  """
32
29
 
33
- __version__ = '3.12.0'
30
+ __version__ = '3.12.1'
34
31
  __author__ = 'Geoffrey R. Scheller'
35
32
  __copyright__ = 'Copyright (c) 2023-2025 Geoffrey R. Scheller'
36
33
  __license__ = 'Apache License 2.0'