Small changes for new version

This commit is contained in:
Shay Carter 2023-12-12 11:45:16 -07:00
parent 1940439ab8
commit 2791429ca7
2 changed files with 5 additions and 5 deletions

View file

@ -58,15 +58,15 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = 'python-awips' project = 'python-awips'
copyright = '2018, Unidata' copyright = '2018, NSF Unidata'
author = 'Unidata' author = 'NSF Unidata'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '18.1.7' version = '20.1'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation

View file

@ -10,7 +10,7 @@ dependencies = ['numpy']
if sys.version_info < (3, 4): if sys.version_info < (3, 4):
dependencies.append('enum34') dependencies.append('enum34')
ver = "20" ver = "20.1"
setup( setup(
name='python-awips', name='python-awips',
@ -19,7 +19,7 @@ setup(
packages=find_packages(exclude='data'), packages=find_packages(exclude='data'),
license='BSD', license='BSD',
url='http://unidata.github.io/python-awips', url='http://unidata.github.io/python-awips',
author='Unidata', author='NSF Unidata',
author_email='support-awips@ucar.edu', author_email='support-awips@ucar.edu',
install_requires=dependencies, install_requires=dependencies,
extras_require={ extras_require={