Skip to content

Commit

Permalink
Merge pull request #19 from edx/saleem-latif/ENT-3428-bug-fix
Browse files Browse the repository at this point in the history
ENT-3428: Include package data, so that migrations and python packages are included in the final build.
  • Loading branch information
saleem-latif authored Sep 22, 2020
2 parents 3a12d12 + 6935f01 commit 5313e90
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ Unreleased
--------------------


[1.0.1] - 2020-09-21
--------------------

* Added package data, so that migrations and python packages are included in the final build.

[1.0.0] - 2020-09-09
--------------------

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,8 @@ def get_requirements(requirements_file):
version=VERSION,
packages=[
'taxonomy',
'taxonomy.providers',
'taxonomy.validators',
],
include_package_data=True,
description='Taxonomy service',
long_description=README + "\n\n" + CHANGELOG,
author='edX',
Expand Down
2 changes: 1 addition & 1 deletion taxonomy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
Your project description goes here.
"""

__version__ = '1.0.0'
__version__ = '1.0.1'

default_app_config = 'taxonomy.apps.TaxonomyConfig' # pylint: disable=invalid-name

0 comments on commit 5313e90

Please sign in to comment.