Skip to content

Commit 0314c9d

Browse files
committed
v3.0.3 Tested on Python 3.14 and 3.15 dev. Support stubs. Fixed UnboundLocalError
1 parent 4cf66d5 commit 0314c9d

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,12 @@ part of your geospatial project.
9494
# Version Changes
9595

9696

97-
## 3.0.3.dev
97+
## 3.0.3
98+
99+
### Type checking
100+
- Add optional dependency, "stubs", containing the package "pyshp-stubs" generated with stubgen (to avoid
101+
including py.typed, and no longer being a single file project).
102+
98103
### Bug fix
99104
- Prevented UnboundLocalError when reading non-single point M and Z type Shapefiles (@ekawas-vrify).
100105

changelog.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
VERSION 3.0.3.dev
1+
VERSION 3.0.3
2+
3+
2025-11-28
4+
Type checking:
5+
* Add optional dependency, "stubs", containing the package "pyshp-stubs" generated with stubgen (to avoid
6+
including py.typed, and no longer being a single file project).
27

38
2025-10-25
49
Bug fix:

src/shapefile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from __future__ import annotations
1010

11-
__version__ = "3.0.3.dev"
11+
__version__ = "3.0.3"
1212

1313
import array
1414
import doctest

0 commit comments

Comments
 (0)