Skip to content

Commit

Permalink
Merge pull request #38 from philiporlando/fix-project-urls
Browse files Browse the repository at this point in the history
Use project.urls header
  • Loading branch information
philiporlando authored Nov 23, 2024
2 parents 95be248 + d8af85b commit 8b5ad55
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" },
{ name = "Brandon Istenes", email = "[email protected]" },
]
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 <[email protected]>",
Expand Down

0 comments on commit 8b5ad55

Please sign in to comment.