From 08b20a7d2ce744adca6f6326256eaae2f2f053bf Mon Sep 17 00:00:00 2001 From: Craig Harrison Date: Tue, 18 Feb 2025 16:48:06 +1100 Subject: [PATCH] * Updated the version of Python used in the workflows from 3.7 to 3.8 * Incremented version to 0.6.0 --- .github/workflows/pypi.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 7536c3a..270e74b 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/setup.py b/setup.py index 67ebd7d..53e3704 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='geodepy', - version='0.5.3', + version='0.6.0', description='GA Geodesy Package', long_description='A toolkit for Geodesy and Surveying in Python', url='https://github.com/GeoscienceAustralia/GeodePy',