Skip to content

Commit

Permalink
Merge branch 'feature/fudgeo-86' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jlhumber committed Dec 27, 2024
2 parents f5b8481 + 24de519 commit 2bc3505
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021-2024 Integrated Informatics Inc
Copyright (c) 2021-2025 Integrated Informatics Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ For details on OGC GeoPackages, please see the [OGC web page](http://www.geopack

## Python Compatibility

The `fudgeo` library is compatible with Python 3.7 to 3.12. Developed and
The `fudgeo` library is compatible with Python 3.9 to 3.13. Developed and
tested on **macOS** and **Windows**, should be fine on **Linux** too.


Expand Down Expand Up @@ -54,7 +54,7 @@ and a **WGS 84** entry.
The definition of the WGS84 entry is flexible - meaning that the
*WKT for WGS84* can be setup per the users liking. As an example,
use with Esri's ArcGIS means either using the *EPSG WKT* or the *ESRI WKT*. By
default the *ESRI WKT* is used - However, if *EPSG WKT* is desired, you
default, the *ESRI WKT* is used - However, if *EPSG WKT* is desired, you
may provide a ``flavor`` parameter to the create method specifying EPSG.

```python
Expand Down Expand Up @@ -414,10 +414,14 @@ Support provided for the following constraint types:

## License

[MIT](https://choosealicense.com/licenses/mit/)
[MIT](https://raw.githubusercontent.com/realiii/fudgeo/refs/heads/develop/LICENSE)

## Release History

### v0.8.2
* documentation edits
* copyright bump

### v0.8.1
* add support for creating feature classes with a geometry column name other than `SHAPE`
* ensure support for Python 3.13 and update documentation / configuration
Expand Down
2 changes: 1 addition & 1 deletion fudgeo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""


__version__ = '0.8.1'
__version__ = '0.8.2'


if __name__ == '__main__': # pragma: no cover
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[project]
name = "fudgeo"
version = "0.8.1"
version = "0.8.2"
description = """\
GeoPackage support from Python. fudgeo is a lightweight package \
for creating OGC GeoPackages, Feature Classes, and Tables. Easily \
read and write geometries and attributes to Feature Classes \
and Tables using regular Python objects and SQLite syntax.\
"""
readme = "README.md"
authors = [{ name = "Integrated Informatics Inc.", email = "[email protected]" }]
authors = [{ name = "Integrated Informatics (USA) Inc.", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
Expand Down

0 comments on commit 2bc3505

Please sign in to comment.