From 17ecbbb38ee63738397b5c553859fa725a757583 Mon Sep 17 00:00:00 2001 From: jonhealy1 Date: Wed, 2 Mar 2022 02:26:14 -0800 Subject: [PATCH] loosen pystac version --- CHANGELOG.md | 5 +++++ setup.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf02f880..9a75463c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [v2.4.2] - 2022-03-02 +### Changed + + - Loosen pystac version dependency + ## [v2.4.1] - 2022-03-02 ### Changed diff --git a/setup.py b/setup.py index 916be18e..0f96f429 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -__version__ = "2.4.1" +__version__ = "2.4.2" with open("README.md", "r") as fh: long_description = fh.read() @@ -33,7 +33,7 @@ install_requires=[ "requests>=2.19.1", "jsonschema>=3.2.0", - "pystac[validation]==1.1.0", + "pystac[validation]>=1.1.0", "click>=8.0.0", "stac-check>=1.0.2", ],