Skip to content

Commit fb72098

Browse files
authored
ci: lint after post-release reset version update (#1657)
1 parent ed12b1c commit fb72098

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,9 @@ jobs:
376376
version="$major_version.$minor_version.$((patch_version + 1))"
377377
python scripts/update_version.py -v "$version"
378378
379+
# lint Python files
380+
python scripts/pull_request_prepare.py
381+
379382
# commit and push reset branch
380383
git config core.sharedRepository true
381384
git config user.name "github-actions[bot]"

flopy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
major = 3
44
minor = 3
55
micro = 7
6-
__version__ = '{}.{}.{}'.format(major, minor, micro)
6+
__version__ = "{}.{}.{}".format(major, minor, micro)

0 commit comments

Comments
 (0)