diff --git a/docs/environment.yml b/docs/environment.yml index ac0714966..a4e911b1c 100644 --- a/docs/environment.yml +++ b/docs/environment.yml @@ -9,7 +9,6 @@ dependencies: - ipywidgets - ipykernel - pip: - - geoh5py==0.1.4 - numpydoc - jinja2==3.0.3 - sphinx==3.5.4 diff --git a/geoapps/__init__.py b/geoapps/__init__.py index 0b0f434ff..64e4fa4b6 100644 --- a/geoapps/__init__.py +++ b/geoapps/__init__.py @@ -5,4 +5,4 @@ # geoapps is distributed under the terms and conditions of the MIT License # (see LICENSE file at the root of this source code package). -__version__ = "0.8.0-alpha.2" +__version__ = "0.8.0" diff --git a/pylintrc b/pylintrc index 106fb97e2..9a66200f6 100644 --- a/pylintrc +++ b/pylintrc @@ -33,8 +33,7 @@ extension-pkg-whitelist= # Return non-zero exit code if any of these messages/categories are detected, # even if score is above --fail-under value. Syntax same as enable. Messages # specified are enabled, while categories only check already-enabled messages. -fail-on=E,F -# TODO: fail on warnings too (W) +fail-on=W,E,F # Specify a score threshold to be exceeded before program exits with error. # TODO: remove this. Only to ease transition to cleaner code @@ -155,7 +154,11 @@ disable=raw-checker-failed, useless-suppression, deprecated-pragma, use-symbolic-message-instead, - missing-module-docstring + missing-module-docstring, + missing-function-docstring, + missing-class-docstring, + fixme, + R,C # TODO: re-enable these # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option diff --git a/pyproject.toml b/pyproject.toml index 92d021d56..210d2b4df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "geoapps" -version = "0.8.0-alpha.2" +version = "0.8.0" description = "Open-sourced Applications in Geoscience" authors = ["Mira Geoscience "] repository = "https://github.com/MiraGeoscience/geoapps" diff --git a/readthedocs.yml b/readthedocs.yml index cbe6fd670..11000ccb6 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -1,9 +1,9 @@ -python: - setup_py_install: true +version: 2 + conda: - file: docs/environment.yml + environment: docs/environment.yml sphinx: builder: html - configuration: conf.py + configuration: docs/conf.py fail_on_warning: true formats: []