Skip to content

Commit

Permalink
Update for release 2.0.2 (#60)
Browse files Browse the repository at this point in the history
* get ready for v2.0.2

* add note about GDAL
  • Loading branch information
gillins authored Jun 11, 2024
1 parent 0430dd1 commit 85404e3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
13 changes: 13 additions & 0 deletions doc/source/ReleaseNotes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Pyshepseg Release Notes
=======================

Version 2.0.2 (2024-06-12)
--------------------------

New Features:
* Setup is now fully controlled by pyproject.toml, with no setup.py
* Add support for spatial stats within AWS Batch
* Add --tileprefix in AWS Batch so all temporary S3 files are unique.
This allows multiple concurrent runs.

Bug fixes:
* Add guard against subsampling >100% of the data
* Fix console_scripts syntax

Version 2.0.1 (2024-05-21)
--------------------------

Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# cryptic ways (depending exactly what options are used).
#

# We have chosen not to explicitly list the dependency on GDAL. This is
# because GDAL itself cannot be installed with pip, and so must already be
# installed on the system by some other means.

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
Expand Down
2 changes: 1 addition & 1 deletion pyshepseg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
"""

SHEPSEG_VERSION = '2.0.1'
SHEPSEG_VERSION = '2.0.2'
__version__ = SHEPSEG_VERSION

0 comments on commit 85404e3

Please sign in to comment.