Skip to content

Commit

Permalink
Merge branch 'master' into clean-up-pytest-warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
waltsims authored Jan 2, 2024
2 parents 341a112 + 1d743e2 commit f4a940b
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 7 deletions.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
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. Windows/Linux]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/example.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Example
about: Request an example to help others get started
title: "[Example]"
labels: example
assignees: ''

---

**Describe the example**
What example do you wish was included in k-wave-python? What functionality of principle should it display?

**Sources**
If applicable, add sources of the example from literature or other projects.

**Additional context**
Add any other context about the example here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
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.
2 changes: 1 addition & 1 deletion .github/workflows/test_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- uses: actions/setup-python@v3
with:
python-version: '3.8'
python-version: '3.9'
- uses: actions/checkout@master
with:
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"h5py==3.9.0",
"h5py==3.10.0",
"scipy==1.10.1",
"opencv-python==4.8.0.76",
"deepdiff==6.3.1",
"opencv-python==4.8.1.78",
"deepdiff==6.7.1",
"matplotlib==3.7.2",
"numpy>=1.22.2,<1.25.0",
"scikit-image==0.21.0",
Expand All @@ -44,9 +44,9 @@ test = ["pytest", "phantominator"]
example = ["gdown==4.7.1"]
docs = ["m2r2==0.3.2",
"sphinx-copybutton==0.5.2",
"sphinx-tabs==3.4.1",
"sphinx-toolbox==3.4.0",
"furo==2023.8.19"]
"sphinx-tabs==3.4.4",
"sphinx-toolbox==3.5.0",
"furo==2023.9.10"]

[tool.hatch.version]
path = "kwave/__init__.py"
Expand Down

0 comments on commit f4a940b

Please sign in to comment.