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
3 changes: 2 additions & 1 deletion .github/workflows/run_checks_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
pip install pytest pylint pylint-per-file-ignores
pip install -e .
- name: run Pylint for errors and warnings only, on test_shapefile.py
continue-on-error: true
run: |
pylint --disable=R,C test_shapefile.py
pylint --disable=R,C test_shapefile.py src/shapefile.py

build_wheel_and_sdist:
runs-on: ubuntu-latest
Expand Down
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@ dist/
.vscode
.dmypy.json
.python-version
.venv
venv
.venv/
venv/
.mypy_cache/
.pytest_cache/
.ruff_cache/
15 changes: 15 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
VERSION 3.0.0-alpha

Python 2 and Python 3.8 support dropped

2025-07-22
Code quality
* Type hints
* f-strings
* Remove Python 2 specific functions.
* Run doctests against wheels.
* Testing of wheels before publishing them
* pyproject.toml src layout
* Slow test marked.


VERSION 2.4.0

2025-07-21
Expand Down
Loading
Loading