Patch version numbers using a Python program.

It turns out that "sed" does not work on Mac OS,
and I wasn't even trying to patch the version
numbers on Windows. I decided to write a Python
program for this task, so it will work identically
on all 3 operating systems.
This commit is contained in:
Don Cross
2022-06-05 15:03:02 -04:00
parent 1e9f1a7b05
commit e187707412
5 changed files with 107 additions and 76 deletions

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='astronomy-engine',
version="2.1.2",
version='2.1.2',
description='Astronomy calculation for Sun, Moon, and planets.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',