File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 10
10
11
11
### Fixed
12
12
13
+ ## [ v1.6.1]
14
+
15
+ ### Fixed
16
+
17
+ - Pins ` jsonschema ` to >=4.0.1 to avoid a ` RefResolutionError ` when validating some extensions ([ #857 ] ( https://github.com/stac-utils/pystac/pull/857 ) )
13
18
14
19
## [ v1.6.0]
15
20
@@ -609,7 +614,8 @@ use `Band.create`
609
614
610
615
Initial release.
611
616
612
- [ Unreleased ] : < https://github.com/stac-utils/pystac/compare/v1.6.0..main >
617
+ [ Unreleased ] : < https://github.com/stac-utils/pystac/compare/v1.6.1..main >
618
+ [ v1.6.1 ] : < https://github.com/stac-utils/pystac/compare/v1.6.0..v1.6.1 >
613
619
[ v1.6.0 ] : < https://github.com/stac-utils/pystac/compare/v1.5.0..v1.6.0 >
614
620
[ v1.5.0 ] : < https://github.com/stac-utils/pystac/compare/v1.4.0..v1.5.0 >
615
621
[ v1.4.0 ] : < https://github.com/stac-utils/pystac/compare/v1.3.0..v1.4.0 >
Original file line number Diff line number Diff line change 1
1
import os
2
2
from typing import Optional
3
3
4
- __version__ = "1.6.0 "
4
+ __version__ = "1.6.1 "
5
5
"""Library version"""
6
6
7
7
Original file line number Diff line number Diff line change 24
24
py_modules = [splitext (basename (path ))[0 ] for path in glob ("pystac/*.py" )],
25
25
python_requires = ">=3.8" ,
26
26
install_requires = ["python-dateutil>=2.7.0" ],
27
- extras_require = {"validation" : ["jsonschema>=3.0 " ], "orjson" : ["orjson>=3.5" ]},
27
+ extras_require = {"validation" : ["jsonschema>=4.0.1 " ], "orjson" : ["orjson>=3.5" ]},
28
28
license = "Apache Software License 2.0" ,
29
29
license_files = ["LICENSE" ],
30
30
zip_safe = False ,
You can’t perform that action at this time.
0 commit comments