Skip to content

Commit

Permalink
Closes #25
Browse files Browse the repository at this point in the history
  • Loading branch information
stefancoe committed May 6, 2023
1 parent d931b18 commit e0c3893
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion combine_gtfs_feeds/cli/gtfs_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Stops(pa.SchemaModel):
stop_desc: Optional[Series[str]] = pa.Field(coerce=True, nullable=True)
stop_lat: Series[float64] = pa.Field(coerce=True, nullable=True)
stop_lon: Series[float64] = pa.Field(coerce=True, nullable=True)
zone_id: Series[str] = pa.Field(coerce=True, nullable=True)
zone_id: Optional[Series[str]] = pa.Field(coerce=True, nullable=True)
stop_url: Optional[Series[str]] = pa.Field(coerce=True, nullable=True)
location_type: Optional[Series[pd.Int64Dtype]] = pa.Field(
coerce=True, nullable=True, isin=[0, 1, 2, 3, 4]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="combine_gtfs_feeds",
version="0.1.5",
version="0.1.8",
author="psrc staff",
author_email="[email protected]",
url="https://github.com/psrc/combine_gtfs_feeds",
Expand Down

0 comments on commit e0c3893

Please sign in to comment.