Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development #219

Merged
merged 2 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading