Merge pull request #113 from srcarter3/v20

Updated the environment.yml and setup.py files
This commit is contained in:
srcarter3 2023-09-18 14:45:13 -06:00 committed by GitHub
commit 31892711eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -23,5 +23,4 @@
- shapely
- six
- pip
- jupyter_contrib_nbextensions

View file

@ -6,11 +6,11 @@ import sys
from distutils.core import setup
from setuptools import find_packages
dependencies = ['numpy', 'six']
dependencies = ['numpy']
if sys.version_info < (3, 4):
dependencies.append('enum34')
ver = "18.1.11"
ver = "20"
setup(
name='python-awips',
@ -19,7 +19,6 @@ setup(
packages=find_packages(exclude='data'),
license='BSD',
url='http://unidata.github.io/python-awips',
download_url='https://github.com/Unidata/python-awips/archive/{}.tar.gz'.format(ver),
author='Unidata',
author_email='support-awips@ucar.edu',
install_requires=dependencies,