File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ build-backend = "scikit_build_core.build"
12
12
# ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
13
13
[project ]
14
14
name = " pyzmq"
15
- version = " 26.3.0 "
15
+ version = " 26.4.0.dev "
16
16
authors = [
17
17
{
name =
" PyZMQ Contributors" ,
email =
" [email protected] " },
18
18
{ name = " Brian E. Granger" },
@@ -119,7 +119,7 @@ skip = ["zmq/__init__.py"]
119
119
github_url = " https://github.com/zeromq/pyzmq"
120
120
121
121
[tool .tbump .version ]
122
- current = " 26.3.0 "
122
+ current = " 26.4.0.dev "
123
123
regex = '''
124
124
(?P<major>\d+)
125
125
\.
Original file line number Diff line number Diff line change 9
9
10
10
from zmq .backend import zmq_version_info
11
11
12
- __version__ : str = "26.3.0 "
12
+ __version__ : str = "26.4.0.dev "
13
13
_version_pat = re .compile (r"(\d+)\.(\d+)\.(\d+)(.*)" )
14
14
_match = cast (Match , _version_pat .match (__version__ ))
15
15
_version_groups = _match .groups ()
You can’t perform that action at this time.
0 commit comments