Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antonagestam committed Aug 12, 2019
1 parent d621bb3 commit 511cc7f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
16 changes: 13 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,19 @@ directory:
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
To run tests with tox, setup a virtualenv and install tox with
``pip install tox`` then run ``tox`` in the project directory. To only run
tests for a certain environment run e.g. ``tox -e py37-django202``.
Install test dependencies and target Django version:

.. code:: bash
pip install -r test-requirements.txt
pip install django==2.2
Run linter and test suite:

.. code:: bash
flake8
make test
License
Expand Down
3 changes: 1 addition & 2 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ def main():
"django.template.loaders.eggs.Loader",
),
"TEMPLATE_DIRS": (
os.path.join(os.path.dirname(__file__),
"collectfast/templates"),
os.path.join(os.path.dirname(__file__), "collectfast/templates"),
),
"INSTALLED_APPS": (
app_name,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
url='https://github.com/antonagestam/collectfast/',
license='MIT License',
include_package_data=True,
install_requires=['Django>=1.8', 'django-storages>=1.6'],
install_requires=['Django>=1.11', 'django-storages>=1.6'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3',
'Framework :: Django',
]
Expand Down

0 comments on commit 511cc7f

Please sign in to comment.