File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed
Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1+ [bumpversion]
2+ current_version = 3.0.0b9.dev
3+ commit = False
4+ tag = False
5+ parse = (?P<major>\d+)\.(?P<minor>\d+)\.(0b)?(?P<patch>\d+)(\.(?P<release>[a-z]+))?
6+ serialize =
7+ {major}.{minor}.0b{patch}.{release}
8+ {major}.{minor}.0b{patch}
9+
10+ [bumpversion:part:release]
11+ optional_value = prod
12+ first_value = dev
13+ values =
14+ dev
15+ prod
16+
17+ [bumpversion:file:./pulp_python/__init__.py]
18+
19+ [bumpversion:file:./setup.py]
Original file line number Diff line number Diff line change 1- __version__ = '3.0.0b8 '
1+ __version__ = '3.0.0b9.dev '
22
33default_app_config = 'pulp_python.app.PulpPythonPluginAppConfig'
Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44
55requirements = [
6- 'pulpcore~ =3.0 ' ,
6+ 'pulpcore> =3.4 ' ,
77 'pkginfo' ,
88 'packaging' ,
99]
1313
1414setup (
1515 name = 'pulp-python' ,
16- version = '3.0.0b8 ' ,
16+ version = '3.0.0b9.dev ' ,
1717 description = 'pulp-python plugin for the Pulp Project' ,
1818 long_description = long_description ,
1919 license = 'GPLv2+' ,
You can’t perform that action at this time.
0 commit comments