From 51e84d7fca66554e3c5956355eb8a8c0d14b1aa1 Mon Sep 17 00:00:00 2001 From: DEBASISH MAHAPATRA Date: Thu, 4 Apr 2024 01:25:23 +0530 Subject: [PATCH] Bump version to 1.5.0b2 --- .github/workflows/python-publish.yml | 4 ++-- setup.py | 19 ++++++++++--------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 8bdba66..c289451 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -16,10 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 # updated version + - uses: actions/checkout@v3 # updated version - name: Set up Python - uses: actions/setup-python@v4 # updated version + uses: actions/setup-python@v3 # updated version with: python-version: '3.x' diff --git a/setup.py b/setup.py index c4049fa..ab0167c 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +3,10 @@ with open("README.md", "r") as fh: long_description = fh.read() -with open("CHANGELOG.md", "r") as fh: - changelog = fh.read() +#with open("CHANGELOG.md", "r") as fh: + # changelog = fh.read() -long_description += "\n\n" + changelog +#long_description += "\n\n" + changelog setup( name='nwpeval', @@ -16,14 +16,15 @@ long_description_content_type="text/markdown", author='Debasish Mahapatra', author_email='debasish.atmos@gmail.com | debasish.mahapatra@ugent.be', + packages=find_packages(), install_requires=[ - 'numpy', - 'pygrib', - 'xarray', - 'scipy', - 'pandas', - 'matplotlib', + 'numpy>=1.20.0', + 'pygrib>=2.1.0', + 'xarray>=0.18.0', + 'scipy>=1.6.0', + 'pandas>=1.2.0', + 'matplotlib>=3.3.0', ], classifiers=[ 'Development Status :: 4 - Beta',