Skip to content

Commit

Permalink
Add __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
elacuesta committed Sep 19, 2023
1 parent 0df0d6e commit e431925
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ commit = True
tag = True
tag_name = v{new_version}

[bumpversion:file:setup.py]
[bumpversion:file:sh_scrapy/__init__.py]
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from setuptools import setup, find_packages

from sh_scrapy import __version__


setup(
name='scrapinghub-entrypoint-scrapy',
version='0.14.1',
version=__version__,
license='BSD',
description='Scrapy entrypoint for Scrapinghub job runner',
long_description=open('README.md').read(),
Expand Down
1 change: 1 addition & 0 deletions sh_scrapy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.14.1"

0 comments on commit e431925

Please sign in to comment.