Skip to content

Commit

Permalink
fix: corrected version and err msg
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisSchmitz committed Feb 19, 2024
1 parent b498f9e commit 69038be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Jovian/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

__version__ = "0.1.0"
__version__ = "2.0.1"
__package_name__ = "Jovian"
__package_dir__ = os.path.dirname(os.path.abspath(__file__))
__home_env_configuration__ = os.path.join(os.path.expanduser("~"), ".jovian_env.yaml")
4 changes: 2 additions & 2 deletions Jovian/workflow/envs/jovian_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ dependencies:
- nginx==1.15.9
- nb_conda==2.2.1
- nb_conda_kernels==2.2.1
- notebook==5.7.5 # Bugfix for https://github.com/DennisSchmitz/Jovian/issues/10
- tornado==5.1.1 # Bugfix for https://github.com/DennisSchmitz/Jovian/issues/10
- notebook==5.7.5 # Bugfix for https://github.com/DennisSchmitz/Jovian_archive/issues/10
- tornado==5.1.1 # Bugfix for https://github.com/DennisSchmitz/Jovian_archive/issues/10
2 changes: 1 addition & 1 deletion Jovian/workflow/scripts/virus_typing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ typingtool() {
# Sadly, the current version of the typingtool service has some issues, resulting in errors because it can't handle the request.
### One of two things can happen; you get a terse xml output that states "502 Proxy Error" or you get a verbose html output that states "Error reading from remote server". Hence, the double grep OR statement...
if grep -q -e "502 Proxy Error" -e "Error reading from remote server" ${tt_xml}; then
echo -e "Sample:\t${sample_name}\tQuery cannot currently be handled by typingtool... Please try again later, for further information, see: https://github.com/DennisSchmitz/Jovian/issues/51"
echo -e "Sample:\t${sample_name}\tQuery cannot currently be handled by typingtool... Please try again later, for further information, see: https://github.com/DennisSchmitz/Jovian_archive/issues/51"
else
# If error code is not found; parse the XML
python ${parser_py} "${sample_name}" "${tt_xml}" "${tt_csv}"
Expand Down

0 comments on commit 69038be

Please sign in to comment.