-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
update master to 6.4.0
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve MODFLOW 6 | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. macOS, Linux, Windows] | ||
- Version [e.g. 22] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for MODFLOW 6 | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: Help | ||
about: Where to go for help with MODFLOW 6 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
If you need help using MODFLOW 6 do not open an issue on this GitHub repository. Instead submit your question to the [MODFLOW Google Group](https://groups.google.com/g/modflow) |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#! /bin/bash | ||
|
||
SEARCHPATHS=(src srcbmi utils/zonebudget/src) | ||
EXCLUDEDIRS=(src/Utilities/Libraries/blas # external library blas | ||
src/Utilities/Libraries/daglib # external library dag | ||
src/Utilities/Libraries/rcm # external library rcm | ||
src/Utilities/Libraries/sparsekit # external library sparsekit | ||
src/Utilities/Libraries/sparskit2) # external library sparsekit2 | ||
EXCLUDEFILES=(src/Utilities/InputOutput.f90) # excluded until refactored | ||
|
||
fformatfails=() | ||
checkcount=0 | ||
|
||
for path in "${SEARCHPATHS[@]}"; do | ||
readarray -d '' files < <(find "${path}" -type f -print0 | grep -z '\.[fF]9[05]$') | ||
for file in "${files[@]}"; do | ||
exclude=0 | ||
|
||
for d in "${EXCLUDEDIRS[@]}"; do | ||
[[ "${d}" == $(dirname "${file}") ]] && exclude=1 && break; done | ||
if [[ ${exclude} == 1 ]]; then continue; fi | ||
|
||
for f in "${EXCLUDEFILES[@]}"; do | ||
[[ "${f}" == "${file}" ]] && exclude=1 && break; done | ||
if [[ ${exclude} == 1 ]]; then continue; fi | ||
|
||
((checkcount++)) | ||
|
||
if [[ ! -z $(fprettify -d -c ./distribution/.fprettify.yaml "${file}" 2>&1) ]]; then | ||
fformatfails+=("${file}") | ||
fi | ||
done | ||
done | ||
|
||
echo -e "\nFortran source files checked: ${checkcount}" | ||
echo -e "Fortran source files failed: ${#fformatfails[@]}\n" | ||
|
||
if [[ ${#fformatfails[@]} > 0 ]]; then | ||
for f in "${fformatfails[@]}"; do echo "${f}"; done | ||
|
||
echo -e "\nTo verify file format diff and/or warn in local environment run:" | ||
echo -e " 'fprettify -d -c <path to modflow6>/distribution/.fprettify.yaml <filepath>'\n\n" | ||
|
||
exit 1 | ||
fi | ||
|
||
exit 0 |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.