-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add support for list of python paths in command line and tests - Fix reporter.base for Custom reporter from files and tests - work around for urllib3 v2.0 drop support for OpenSSL<1.1.1 - Some test fixes and updates - Docs updates - work around for urllib3 v2.0 drop support for OpenSSL<1.1.1 - Custom reporter from files tests and fix in reporter.base - Add support for list of python paths in command line - Update faq.rst with non-disease-specific questions from current emodp… - add an unit style test for add_py_path() - Add link to source code in docs - Update installation.rst - Fix install doc - Merge v1.21 and on to master - Update Jenkinsfile with jenkins_user - Removed deprecated params, added required for RTD doc builds
- Loading branch information
1 parent
065017c
commit 95a88cf
Showing
17 changed files
with
276 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
sphinx-rtd-theme~=0.5 | ||
sphinxext.remoteliteralinclude~=0.4.0 | ||
sphinx~=6.2.1 | ||
sphinx-rtd-theme~=1.2.2 | ||
sphinxcontrib-napoleon~=0.7 | ||
sphinx~=4.4.0 | ||
plantweb~=1.2 | ||
sphinxcontrib-programoutput~=0.16 | ||
sphinxext.remoteliteralinclude | ||
sphinx-copybutton~=0.4.0 | ||
plantweb~=1.2.1 | ||
sphinxcontrib-programoutput~=0.17 | ||
nbsphinx~=0.9.2 | ||
jupyterlab~=4.0.2 | ||
myst-parser~=2.0.0 | ||
readthedocs-sphinx-search~=0.3.1 | ||
sphinx-copybutton~=0.5.2 | ||
pygithub~=1.57 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# flake8: noqa F821 | ||
from emodpy.defaults.iemod_default import IEMODDefault | ||
|
||
__version__ = "1.21.1" | ||
__version__ = "1.22.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ astunparse | |
bs4 | ||
keyring | ||
pyCOMPS~=2.6 | ||
requests==2.29.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"Custom_Reports" : | ||
{ | ||
"Use_Explicit_Dlls" : 1, | ||
"ReportNodeDemographics" : | ||
{ | ||
"Enabled" : 1, | ||
"Reports" : | ||
[ | ||
{ | ||
"Age_Bins" : [ 40.0, 80.0, 125.0 ] | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"Custom_Reports" : | ||
{ | ||
"Use_Explicit_Dlls" : 1, | ||
"SillyReporterClass" : | ||
{ | ||
"Enabled" : 1, | ||
"Reports" : | ||
[ | ||
{ | ||
"Age_Bins" : [ 40.0, 80.0, 125.0 ] | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.