Skip to content

Commit ea1c047

Browse files
rafaykh90axrjjohnk1
authored
Fix geojson package installation in setup.py (#169)
Co-authored-by: Rajesh Amradi <[email protected]> Co-authored-by: John Klancer <[email protected]>
1 parent 39acdd9 commit ea1c047

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22

33
=======
44

5-
# 1.8.0 (2022-08-25)
6-
- validates source in `upload-source` command using geojson library.
5+
# 1.8.1 (2022-08-29)
6+
- Bug Fix: Fix setup script to have `geojson` package in setup.py install requirements
7+
8+
# 1.8.0 (2022-08-25) - [YANKED]
9+
10+
*Yanked due to missing `geojson` package in setup.py*
11+
12+
- Validates source in `upload-source` command using [geojson package](https://github.com/jazzband/geojson).
713
- Provides line number for an invalid feature that is detected with the geojson validator.
814

915
# 1.7.4 (2022-07-13)
10-
- validates source id for correct syntax when `upload-source` command to resolve `Connection reset by peer error`
16+
- Validates source id for correct syntax when `upload-source` command to resolve `Connection reset by peer error`
1117

1218
# 1.7.3 (2022-03-14)
1319
- Loads `supermercado` on request because binaries for arm64 MacOS and Windows are not easily available.

mapbox_tilesets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""mapbox_tilesets package"""
22

3-
__version__ = "1.8.0"
3+
__version__ = "1.8.1"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def read(fname):
3636
"jsonschema~=3.0",
3737
"jsonseq~=1.0",
3838
"mercantile~=1.1.6",
39+
"geojson~=2.5.0",
3940
],
4041
include_package_data=True,
4142
zip_safe=False,

0 commit comments

Comments
 (0)