Skip to content

Commit

Permalink
installation: functools32 removal
Browse files Browse the repository at this point in the history
* Removes dependency on functools32 which is not used and apparently
  causes weird issues when package is installed from PyPI.

Signed-off-by: Lars Holm Nielsen <lars.holm.nielsen@cern.ch>
  • Loading branch information
lnielsen committed Oct 30, 2015
1 parent a743d8d commit 52bfe7d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions invenio_records/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import sys

import click
from flask import current_app
from flask_cli import with_appcontext
from invenio_db import db

Expand Down Expand Up @@ -59,7 +58,7 @@ def create(source, schema, force):
else:
from celery import group
job = group([create_record.s(data=item, force=force) for item in data])
result = job.apply_async()
job.apply_async()


@records.command()
Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@
'sqlalchemy-utils>=0.31.0',
]

if sys.version_info < (3, 2):
install_requires.append('functools32>=3.2.3-2')

packages = find_packages()


Expand Down

0 comments on commit 52bfe7d

Please sign in to comment.