Skip to content

Commit d8172e6

Browse files
author
Dario Varotto
committed
Hotfix - missing module update
1 parent 78fdea4 commit d8172e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ravenpackapi/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from ravenpackapi.utils.constants import JSON_AVAILABLE_FIELDS
1515

1616
_VALID_METHODS = ('get', 'post', 'put', 'delete')
17-
VERSION = '1.0.16'
17+
VERSION = '1.0.17'
1818

1919
logger = logging.getLogger("ravenpack.core")
2020

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = '1.0.16'
3+
VERSION = '1.0.17'
44

55
with open('README.rst') as readme_file:
66
readme = readme_file.read()
77

88
setup(
99
name='ravenpackapi',
1010
version=VERSION,
11-
packages=find_packages(include=['ravenpackapi.*']),
11+
packages=find_packages(include=['ravenpackapi', 'ravenpackapi.*']),
1212
include_package_data=True,
1313

1414
url='https://github.com/RavenPack/python-api',

0 commit comments

Comments
 (0)