Skip to content

Commit

Permalink
Merge pull request #23 from davidroeca/name-shadow-dist
Browse files Browse the repository at this point in the history
explicitly specify packages to remove shadow trap
  • Loading branch information
lmcgartland committed Nov 9, 2018
2 parents de22bad + d817738 commit c3ca259
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,15 @@ pip install -r requirements-tox.txt
# depending on your system.

# Run the test suite with the versions of python you have installed
tox -e py27,py34
tox -e py27,py34 --develop
# Alternatively, if you're using something like pyenv and can easily install
# Multiple versions of python, then try running the following command
tox
tox --develop

# If for some reason you need to recreate the tox environment (e.g. a new
# dependency has been added since you last ran it, add the -r flag to the
# tox command)
# dependency has been added since you last ran it, you run `tox` without the
# `--develop` flag), add the -r flag to the tox command

tox -r {...additional flags...}
```

Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@

setup(
name='graphene_file_upload',
packages=['graphene_file_upload'], # this must be the same as the name above
version='1.1.0',
packages=[
'graphene_file_upload', # this must be the same as the name above
'graphene_file_upload.flask',
'graphene_file_upload.django',
],
version='1.2.0',
description='Lib for adding file upload functionality to GraphQL mutations in Graphene Django and Flask-Graphql',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
envlist = py27, py34, py35, py36, py37

[testenv]
usedevelop = True
deps =
.[test]
commands =
Expand Down

0 comments on commit c3ca259

Please sign in to comment.