From ab9b5a5ce5d95a8c8c9315eab44e1b3f76eb78a6 Mon Sep 17 00:00:00 2001 From: Don Cross Date: Mon, 10 Jan 2022 20:34:35 -0500 Subject: [PATCH] pip, npm packages 2.0.10. The pip and npm astronomy-engine packages will have matching version numbers from now on, starting with 2.0.10. https://pypi.org/project/astronomy-engine/2.0.10/ https://www.npmjs.com/package/astronomy-engine --- source/js/package.json | 2 +- source/python/setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/js/package.json b/source/js/package.json index 472f9dba..ef86a02e 100644 --- a/source/js/package.json +++ b/source/js/package.json @@ -1,6 +1,6 @@ { "name": "astronomy-engine", - "version": "2.0.9", + "version": "2.0.10", "description": "Astronomy calculation for Sun, Moon, and planets.", "main": "./astronomy.js", "module": "./esm/astronomy.js", diff --git a/source/python/setup.py b/source/python/setup.py index bf814347..4949a620 100644 --- a/source/python/setup.py +++ b/source/python/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='astronomy-engine', - version='1.0.1', + version='2.0.10', description='Astronomy calculation for Sun, Moon, and planets.', long_description=open('README.md').read(), long_description_content_type='text/markdown', @@ -13,6 +13,6 @@ setup( classifiers=[ "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.5" + "Programming Language :: Python :: 3.7" ] )