diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 718275b..c7e3b71 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false # This ensures all matrix jobs run even if some fail matrix: - python-version: ['3.10', '3.11', '3.12', '3.12'] # Adjust these as per available versions + python-version: ['3.10', '3.11', '3.12', '3.13'] # Adjust these as per available versions # Use Docker container to handle the GDAL dependencies container: @@ -34,7 +34,10 @@ jobs: - name: Install build tools run: | apt-get update - apt-get install -y build-essential + apt-get install -y \ + build-essential \ + libgeos-dev \ + libproj-dev # Cache the installation of Poetry - name: cache poetry install diff --git a/pyproject.toml b/pyproject.toml index c04d4d4..b3555a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,20 +1,22 @@ [project] name = "fgdb-to-gpkg" -version = "0.3.0" +version = "0.3.1" description = "A lightweight Python package that converts Esri File GeoDataBases into OGC GeoPackages" authors = [ { name = "Philip Orlando", email = "phlp.orlando@gmail.com" }, { name = "Brandon Istenes", email = "bistenes@gmail.com" }, ] -homepage = "https://github.com/philiporlando/fgdb_to_gpkg" + +[project.urls] repository = "https://github.com/philiporlando/fgdb_to_gpkg" +issues = "https://github.com/philiporlando/fgdb_to_gpkg/issues" [project.dependencies] fiona = "1.10.b2" geopandas = "0.12.2" [tool.poetry] name = "fgdb-to-gpkg" -version = "0.3.0" +version = "0.3.1" description = "A lightweight Python package that converts Esri File GeoDataBases into OGC GeoPackages" authors = [ "Philip Orlando ",