Skip to content

Commit

Permalink
Merge pull request #14 from xylar/fix_lcrc_web_portal
Browse files Browse the repository at this point in the history
Fix LCRC web portal
  • Loading branch information
xylar authored Oct 19, 2021
2 parents 767bd38 + 38e662f commit ab38621
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "mache" %}
{% set version = "1.1.1" %}
{% set version = "1.1.2" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion mache/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from mache.machine_info import MachineInfo
from mache.discover import discover_machine

__version_info__ = (1, 1, 1)
__version_info__ = (1, 1, 2)
__version__ = '.'.join(str(vi) for vi in __version_info__)
4 changes: 2 additions & 2 deletions mache/machines/anvil.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ base_path = /lcrc/group/e3sm/diagnostics
[web_portal]

# The path to the base of the web portals
base_path = /lcrc/group/e3sm/public_html
base_path = /lcrc/group/e3sm/public_html/diagnostic_output

# The base URL that corresponds to the base path
base_url = https://web.lcrc.anl.gov/public/e3sm/
base_url = https://web.lcrc.anl.gov/public/e3sm/diagnostic_output


# The parallel section describes options related to running jobs in parallel
Expand Down
4 changes: 2 additions & 2 deletions mache/machines/chrysalis.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ base_path = /lcrc/group/e3sm/diagnostics
[web_portal]

# The path to the base of the web portals
base_path = /lcrc/group/e3sm/public_html
base_path = /lcrc/group/e3sm/public_html/diagnostic_output

# The base URL that corresponds to the base path
base_url = https://web.lcrc.anl.gov/public/e3sm/
base_url = https://web.lcrc.anl.gov/public/e3sm/diagnostic_output


# The parallel section describes options related to running jobs in parallel
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = mache
version = 1.1.1
version = 1.1.2
author = Xylar Asay-Davis
author_email = [email protected]
description = A package for providing configuration data relate to E3SM supported machines
Expand Down

0 comments on commit ab38621

Please sign in to comment.