Skip to content

Commit 6fa929c

Browse files
authored
Merge pull request #376 from GeospatialPython/Test_on_Python_3.14
In test matrix replace "3.14.0-beta.4" with "3.14" (Move from beta to official CPython release)
2 parents 312930f + 97b2785 commit 6fa929c

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

.github/workflows/run_checks_build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
"3.11",
5050
"3.12",
5151
"3.13",
52-
"3.14.0-beta.4",
52+
"3.14",
5353
]
5454
os: [
5555
"macos-latest",

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Python Shapefile Library (PyShp) reads and writes ESRI Shapefiles in pure Py
88

99
- **Author**: [Joel Lawhead](https://github.com/GeospatialPython)
1010
- **Maintainers**: [Karim Bahgat](https://github.com/karimbahgat)
11-
- **Version**: 3.0.2.post1
11+
- **Version**: 3.0.3.dev0
1212
- **Date**: 10th October, 2025
1313
- **License**: [MIT](https://github.com/GeospatialPython/pyshp/blob/master/LICENSE.TXT)
1414

@@ -93,12 +93,17 @@ part of your geospatial project.
9393

9494
# Version Changes
9595

96+
## Next
97+
98+
### Testing.
99+
- Test PyShp on the Python 3.14 official release (officially released this week, no longer in beta)
100+
96101
## 3.0.2
97102

98-
## .post1
103+
### .post1
99104
- Update version at the top of this Readme file (to make what PyPi users see consistent with the changelog and __version__).
100105

101-
## .post0
106+
### .post0
102107
- Re-release to trigger the deploy job to publish PyShp to Pypi
103108

104109
### Bug fix

changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
VERSION NEXT
2+
3+
2025-10-10
4+
Testing:
5+
* Test on the Python 3.14 official release (no longer in beta)
6+
17
VERSION 3.0.2
28

39
2025-10-10

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.2.post1"
11+
__version__ = "3.0.3.dev0"
1212

1313
import array
1414
import doctest

0 commit comments

Comments
 (0)