Skip to content

Commit

Permalink
Merge pull request #386 from MiraGeoscience/release/0.8.0
Browse files Browse the repository at this point in the history
Merge release/0.8.0 to main
  • Loading branch information
sebhmg authored Jul 14, 2022
2 parents 73e8cff + 18e8ee4 commit 73aa83f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
1 change: 0 additions & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ dependencies:
- ipywidgets
- ipykernel
- pip:
- geoh5py==0.1.4
- numpydoc
- jinja2==3.0.3
- sphinx==3.5.4
Expand Down
2 changes: 1 addition & 1 deletion geoapps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
9 changes: 6 additions & 3 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
repository = "https://github.com/MiraGeoscience/geoapps"
Expand Down
8 changes: 4 additions & 4 deletions readthedocs.yml
Original file line number Diff line number Diff line change
@@ -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: []

0 comments on commit 73aa83f

Please sign in to comment.