Skip to content

Commit 6052f99

Browse files
committed
Fix leak documentation bug and update CI for latest python
1 parent f94c6b7 commit 6052f99

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/buildwheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Build wheel
2525
run: python -m cibuildwheel --output-dir dist/
2626
env:
27-
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*
27+
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*
2828
CIBW_ARCHS_MACOS: "x86_64 arm64"
2929
CIBW_ARCHS_LINUX: "x86_64 i686"
3030
CIBW_SKIP: "*-musllinux_*"

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
16+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
1717
dep-versions: [numpy scipy pandas matplotlib]
1818

1919
steps:

doc/downloads/gddms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
import pyddm
4545
m = pyddm.gddm(
4646
drift=lambda drift_rate,leak,x : drift_rate - x*leak,
47-
parameters={"drift_rate": (-2,2), "bound_height": (.5, 2)})
47+
parameters={"drift_rate": (-2,2), "leak": (0, 2)})
4848
# pyddm.plot.model_gui(m) # ...or...
4949
pyddm.plot.model_gui_jupyter(m)
5050
# End leaky gddm

0 commit comments

Comments
 (0)