From 9882167bac03e4b58f397a11ebbdc67fada43290 Mon Sep 17 00:00:00 2001 From: Guillaume Campagna Date: Tue, 4 Nov 2025 15:06:30 -0500 Subject: [PATCH 1/2] Use py-gtfs-loader from PyPI instead of git dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch from git+https://github.com/transitapp/py-gtfs-loader@v0.2.0 to py-gtfs-loader>=0.3.1 from PyPI to enable deployment to PyPI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index eedf734..d12c535 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "GTFS-flex-to-GOFS" -version = "0.5.0" +version = "0.5.1" description = "Convert GTFS Flex to GOFS" readme = "README.md" license = {text = "MIT"} @@ -18,7 +18,7 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "py-gtfs-loader @ git+https://github.com/transitapp/py-gtfs-loader@v0.2.0", + "py-gtfs-loader>=0.3.1", "shapely>=2.0.4" ] From fd487e9c598634b3b353c12acecc1ad8405180b0 Mon Sep 17 00:00:00 2001 From: Guillaume Campagna Date: Tue, 4 Nov 2025 15:11:49 -0500 Subject: [PATCH 2/2] Update Python requirement to >=3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Match py-gtfs-loader's Python version requirement. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d12c535..9488cb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", ] -requires-python = ">=3.8" +requires-python = ">=3.10" dependencies = [ "py-gtfs-loader>=0.3.1", "shapely>=2.0.4"