diff --git a/README.rst b/README.rst index 82a41fd..d19d616 100644 --- a/README.rst +++ b/README.rst @@ -5,8 +5,8 @@ Market calendars to use with pandas for trading applications. .. image:: https://badge.fury.io/py/pandas-market-calendars.svg :target: https://badge.fury.io/py/pandas-market-calendars -.. image:: https://travis-ci.org/rsheftel/pandas_market_calendars.svg?branch=master - :target: https://travis-ci.org/rsheftel/pandas_market_calendars +.. image:: https://travis-ci.com/rsheftel/pandas_market_calendars.svg?branch=master + :target: https://travis-ci.com/rsheftel/pandas_market_calendars .. image:: https://coveralls.io/repos/github/rsheftel/pandas_market_calendars/badge.svg?branch=master :target: https://coveralls.io/github/rsheftel/pandas_market_calendars?branch=master diff --git a/docs/change_log.rst b/docs/change_log.rst index 64ec574..e9be460 100644 --- a/docs/change_log.rst +++ b/docs/change_log.rst @@ -6,6 +6,7 @@ Updates 2.0.2 (8/16/21) ~~~~~~~~~~~~~~~ - Updated to work with pandas 1.3 +- Raise minimum python to 3.7 2.0.1 (5/20/21) ~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 68dd574..2af35f6 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ VERSION = '2.0.2' # requirements -REQUIRED_PYTHON = '>=3.6.0' +REQUIRED_PYTHON = '>=3.7.0' REQUIRED_PACKAGES = ['pandas>=0.18', 'pytz', 'python-dateutil', 'exchange_calendars'] # Package meta-data @@ -62,7 +62,6 @@ 'License :: OSI Approved :: MIT License', # Specify the Python versions you support here. - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',