Skip to content

Commit

Permalink
Updates for dropping "-beta" from repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
cgmorton committed Apr 13, 2022
1 parent 3755259 commit d3ed53b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 34 deletions.
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

9 changes: 2 additions & 7 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,10 @@ Contributing to OpenET SIMS

Thank you for your interest in supporting the OpenET SIMS project.

Versioning
==========

The OpenET SIMS project is currently in Beta and the version numbers will be "0.0.X" until a non-Beta release is made.

Coding Conventions
==================

OpenET SIMS was developed for Python 3.6. The code will likely work on other version of Python 3 but there are no plans to officially support Python 2.7 at this time.
OpenET SIMS was developed for Python 3.7. The code will likely work on other version of Python 3 but there are no plans to officially support Python 2.7 at this time.

All code should follow the `PEP8 <https://www.python.org/dev/peps/pep-0008/>`__ style guide.

Expand All @@ -30,7 +25,7 @@ Create the conda environment:

.. code-block:: console
conda create --name openet python=3.6
conda create --name openet python=3.7
Activate the environment:

Expand Down
18 changes: 9 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ The input Landsat image must have the following bands and properties:
================= =============================================
SATELLITE Band Names
================= =============================================
LANDSAT_4 B1, B2, B3, B4, B5, B7, B6, pixel_qa
LANDSAT_5 B1, B2, B3, B4, B5, B7, B6, pixel_qa
LANDSAT_7 B1, B2, B3, B4, B5, B7, B6, pixel_qa
LANDSAT_8 B2, B3, B4, B5, B6, B7, B10, pixel_qa
LANDSAT_9 B2, B3, B4, B5, B6, B7, B10, pixel_qa
LANDSAT_4 B1, B2, B3, B4, B5, B7, B6, QA_PIXEL
LANDSAT_5 B1, B2, B3, B4, B5, B7, B6, QA_PIXEL
LANDSAT_7 B1, B2, B3, B4, B5, B7, B6, QA_PIXEL
LANDSAT_8 B2, B3, B4, B5, B6, B7, B10, QA_PIXEL
LANDSAT_9 B2, B3, B4, B5, B6, B7, B10, QA_PIXEL
================= =============================================

================= =============================================
Expand Down Expand Up @@ -238,12 +238,12 @@ References



.. |build| image:: https://github.com/Open-ET/openet-sims-beta/workflows/build/badge.svg
.. |build| image:: https://github.com/Open-ET/openet-sims/workflows/build/badge.svg
:alt: Build status
:target: https://github.com/Open-ET/openet-sims-beta
:target: https://github.com/Open-ET/openet-sims
.. |version| image:: https://badge.fury.io/py/openet-sims.svg
:alt: Latest version on PyPI
:target: https://badge.fury.io/py/openet-sims
.. |codecov| image:: https://codecov.io/gh/Open-ET/openet-sims-beta/branch/master/graphs/badge.svg
.. |codecov| image:: https://codecov.io/gh/Open-ET/openet-sims/branch/main/graphs/badge.svg
:alt: Coverage Status
:target: https://codecov.io/gh/Open-ET/openet-sims-beta
:target: https://codecov.io/gh/Open-ET/openet-sims
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def find_version(*file_paths):
# license='Apache',
author='Alberto Guzman',
author_email='[email protected]',
url=f'https://github.com/Open-ET/openet-{model_name.lower()}-beta',
download_url=f'https://github.com/Open-ET/openet-{model_name.lower()}-beta/'
url=f'https://github.com/Open-ET/openet-{model_name.lower()}',
download_url=f'https://github.com/Open-ET/openet-{model_name.lower()}/'
f'archive/v{version}.tar.gz',
install_requires=['earthengine-api', 'openet-core', 'python-dateutil'],
setup_requires=['pytest-runner'],
Expand All @@ -50,6 +50,7 @@ def find_version(*file_paths):
keywords=f'{model_name} OpenET Evapotranspiration Earth Engine',
classifiers = [
# 'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6'],
'Programming Language :: Python :: 3.7'
],
zip_safe=False,
)

0 comments on commit d3ed53b

Please sign in to comment.