File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 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"
1212# ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
1313[project ]
1414name = " pyzmq"
15- version = " 26.4.0.dev "
15+ version = " 26.4.0"
1616authors = [
1717 {
name =
" PyZMQ Contributors" ,
email =
" [email protected] " },
1818 { name = " Brian E. Granger" },
@@ -119,7 +119,7 @@ skip = ["zmq/__init__.py"]
119119github_url = " https://github.com/zeromq/pyzmq"
120120
121121[tool .tbump .version ]
122- current = " 26.4.0.dev "
122+ current = " 26.4.0"
123123regex = '''
124124 (?P<major>\d+)
125125 \.
Original file line number Diff line number Diff line change 99
1010from zmq .backend import zmq_version_info
1111
12- __version__ : str = "26.4.0.dev "
12+ __version__ : str = "26.4.0"
1313_version_pat = re .compile (r"(\d+)\.(\d+)\.(\d+)(.*)" )
1414_match = cast (Match , _version_pat .match (__version__ ))
1515_version_groups = _match .groups ()
You can’t perform that action at this time.
0 commit comments