Skip to content

Commit 7ed4b24

Browse files
committed
Bump version: 1.5.2 → 1.6.0
1 parent d6fecd3 commit 7ed4b24

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.bumpversion.cfg

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[bumpversion]
2-
current_version = 1.5.2
2+
current_version = 1.6.0
33
commit = True
44
tag = True
55
tag_name = v{new_version}
66

77
[bumpversion:file:setup.py]
88

99
[bumpversion:file:parsel/__init__.py]
10-

parsel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
__author__ = 'Scrapy project'
77
__email__ = '[email protected]'
8-
__version__ = '1.5.2'
8+
__version__ = '1.6.0'
99

1010
from parsel.selector import Selector, SelectorList # NOQA
1111
from parsel.csstranslator import css2xpath # NOQA

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def has_environment_marker_platform_impl_support():
2828
install_requires = [
2929
'w3lib>=1.19.0',
3030
'lxml',
31-
'six>=1.5.2',
31+
'six>=1.6.0',
3232
'cssselect>=0.9'
3333
]
3434
extras_require = {}
@@ -41,7 +41,7 @@ def has_environment_marker_platform_impl_support():
4141

4242
setup(
4343
name='parsel',
44-
version='1.5.2',
44+
version='1.6.0',
4545
description="Parsel is a library to extract data from HTML and XML using XPath and CSS selectors",
4646
long_description=readme + '\n\n' + history,
4747
author="Scrapy project",

0 commit comments

Comments
 (0)