Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ part of your geospatial project.


# Version Changes
## Next
## 3.0.2

### Bug fix
- Deleted py.typed (probably temporarily). Including the py.typed marker file with a single file package caused type checkers to type check all other libraries installed in the same directory (whether they're typed or not, enforcing type checking for all the adjacent dirs libraries, regardless of the user's intentions for the type checker) (pointed out by @dl1jbe - thanks Thomas). Discussions will be started about a longer term fix, possibly e.g. possibly refactoring to a package, and restoring py.typed.

### Code quality:
- Ruff check's UP rule added (mimicks PyUpgrade) (@mwtoews).
Expand Down Expand Up @@ -1587,6 +1590,7 @@ Razzi Abuissa
RosBer97
Ross Rogers
Ryan Brideau
Thomas Beierlein
Tim Gates
Tobias Megies
Tommi Penttinen
Expand Down
11 changes: 10 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
VERSION Next
VERSION 3.0.2

2025-10-09
Bug fix:
* Deleted py.typed (probably temporarily). Including the py.typed marker file with a single
file package caused type checkers to type check all other libraries installed in the same
directory (whether they're typed or not, enforcing type checking for all the adjacent dirs
libraries, regardless of the user's intentions for the type checker)
(pointed out by @dl1jbe). Discussions will be started about a longer term fix, possibly
e.g. possibly refactoring to a package, and restoring py.typed.

2025-08-20
Code quality:
Expand Down
Loading