Skip to content

Commit

Permalink
Provide Python package version as pygmtsar.__version__. Increase mini…
Browse files Browse the repository at this point in the history
…mal required Python version to 3.10.
  • Loading branch information
AlexeyPechnikov committed Jan 25, 2024
1 parent dbe9168 commit 47dc28c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions pygmtsar/pygmtsar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@
from .ASF import ASF
# XYZ tiles downloading
from .XYZTiles import XYZTiles

__version__ = '2024.1.21.post5'
5 changes: 3 additions & 2 deletions pygmtsar/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

from setuptools import setup
import urllib.request
from pygmtsar import __version__

# read the contents of your README file
#from pathlib import Path
Expand All @@ -23,7 +24,7 @@

setup(
name='pygmtsar',
version='2024.1.21.post3',
version=__version__,
description='PyGMTSAR (Python GMTSAR) - Easy and Fast Satellite Interferometry For Everyone',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -73,5 +74,5 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3.8'
],
python_requires='>=3.8'
python_requires='>=3.10'
)

0 comments on commit 47dc28c

Please sign in to comment.