We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed12b1c commit fb72098Copy full SHA for fb72098
.github/workflows/release.yml
@@ -376,6 +376,9 @@ jobs:
376
version="$major_version.$minor_version.$((patch_version + 1))"
377
python scripts/update_version.py -v "$version"
378
379
+ # lint Python files
380
+ python scripts/pull_request_prepare.py
381
+
382
# commit and push reset branch
383
git config core.sharedRepository true
384
git config user.name "github-actions[bot]"
flopy/version.py
@@ -3,4 +3,4 @@
3
major = 3
4
minor = 3
5
micro = 7
6
-__version__ = '{}.{}.{}'.format(major, minor, micro)
+__version__ = "{}.{}.{}".format(major, minor, micro)
0 commit comments