Skip to content

Commit 0bc4be3

Browse files
committed
Update dependencies and format code
* Format all code with `black` code formatter. * Update dependencies
1 parent 4fb3c27 commit 0bc4be3

File tree

16 files changed

+506
-532
lines changed

16 files changed

+506
-532
lines changed

.gitignore

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ docs/build
1313
.venv
1414
dist
1515
*~
16+
.python-version

bin/pythia

100644100755
File mode changed.

docs/about.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
What is Pythia?
22
===============
33

4-
Pythia is a simple framework to assist users in running DSSAT over a spatial area based on grid points. Pythia can use any DSSAT v4.7 build. The inputs to the framework are:
4+
Pythia is a simple framework to assist users in running DSSAT over a spatial area based on grid points. Pythia can use any DSSAT v4.7 build or greater. The inputs to the framework are:
55

66
- A JSON configuration file
77
- Shape files

docs/conf.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,23 @@
1717

1818
# -- Project information -----------------------------------------------------
1919

20-
project = 'Pythia'
21-
copyright = '2020, DSSAT Foundation'
22-
author = 'Christopher Villalobos'
20+
project = "Pythia"
21+
copyright = "2020 - 2022, DSSAT Foundation"
22+
author = "Christopher Villalobos"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.0.0'
25+
release = "1.0.0"
2626

2727

2828
# -- General configuration ---------------------------------------------------
2929

3030
# Add any Sphinx extension module names here, as strings. They can be
3131
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3232
# ones.
33-
extensions = [
34-
]
33+
extensions = []
3534

3635
# Add any paths that contain templates here, relative to this directory.
37-
templates_path = ['_templates']
36+
templates_path = ["_templates"]
3837

3938
# List of patterns, relative to source directory, that match files and
4039
# directories to ignore when looking for source files.
@@ -47,15 +46,15 @@
4746
# The theme to use for HTML and HTML Help pages. See the documentation for
4847
# a list of builtin themes.
4948
#
50-
html_theme = 'sphinx_rtd_theme'
49+
html_theme = "sphinx_rtd_theme"
5150

5251
# Add any paths that contain custom static files (such as style sheets) here,
5352
# relative to this directory. They are copied after the builtin static files,
5453
# so a file named "default.css" will overwrite the builtin "default.css".
55-
html_static_path = ['_static']
54+
html_static_path = ["_static"]
5655

5756
# -- RTD Settings -------------------------------------------------------------
5857

5958
# It seems that RTD needs to have this set in order for the build to occur.
6059
#
61-
master_doc = 'index'
60+
master_doc = "index"

guide.adoc

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)