From 02d8198a99377fa089d76832c9d3d22ef9b871bd Mon Sep 17 00:00:00 2001 From: Shay Carter Date: Mon, 18 Sep 2023 14:27:01 -0600 Subject: [PATCH] Updated the environment.yml and setup.py files - remove jupyter_contrib_nbextensions package from environment.yml as this is no longer supported - update the version in the setup.py file so when installing locally it has v20 associated with it - remove download link from the setup.py file since it's not correct for the beta --- environment.yml | 1 - setup.py | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/environment.yml b/environment.yml index 4d6ca9a..a9d239b 100644 --- a/environment.yml +++ b/environment.yml @@ -23,5 +23,4 @@ - shapely - six - pip - - jupyter_contrib_nbextensions diff --git a/setup.py b/setup.py index c96ea66..6c1b840 100644 --- a/setup.py +++ b/setup.py @@ -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,