Skip to content

Commit

Permalink
Merge pull request #219 from changliao1025/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
changliao1025 authored May 7, 2024
2 parents 3d6c722 + 368b0c1 commit 55d44d7
Show file tree
Hide file tree
Showing 7 changed files with 110 additions and 110 deletions.
6 changes: 3 additions & 3 deletions conda-recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ build_string: py38_0
test:
imports:
- pyflowline


# Define the package metadata
metadata:
# Package name
name: pyflowline
# Package version
version: "0.3.8"
version: "0.3.9"
# Package summary
summary: A mesh-independent river network generator for hydrologic models.
# Package homepage
Expand All @@ -46,4 +46,4 @@ metadata:
- python
- setuptools
- pip

20 changes: 10 additions & 10 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "hexwatershed" %}
{% set git_rev = "main" %}
{% set version = "0.3.8" %}
{% set version = "0.3.9" %}

package:
name: {{ name|lower }}
Expand All @@ -9,21 +9,21 @@ package:
source:
path: $RECIPE_DIR/../..

build:
build:
noarch: python
number: 0
requirements:

requirements:

build:
- python >=3.8
- python >=3.8
- setuptools
- pip

host:
- python >=3.8
- python >=3.8
- pip

run:
- python >=3.8
- numpy
Expand All @@ -34,7 +34,7 @@ requirements:
test:
imports:
- pyflowline


about:
home: https://github.com/changliao1025/pyflowline
Expand Down
6 changes: 3 additions & 3 deletions examples/susquehanna/run_simulation_mpas.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


#%% Define the case information (configuration file parameters)
sDomainName = 'susquehanna'
sRegion = 'susquehanna'
iCase_index = 1
iFlag_simulation = 0
iFlag_visualization = 1
Expand All @@ -21,9 +21,9 @@

# Define the full path to the input and output folders.
oFolder_input = oPath_parent.joinpath(
'data', sDomainName, 'input')
'data', sRegion, 'input')
oFolder_output = oPath_parent.joinpath(
'data', sDomainName, 'output')
'data', sRegion, 'output')

# Define the full path to the domain ("parent") configuration file.
oFilename_domain_config = oFolder_input.joinpath(
Expand Down
Loading

0 comments on commit 55d44d7

Please sign in to comment.