Skip to content

Commit

Permalink
Merge pull request #45 from moshthepitt/no-django-2.0
Browse files Browse the repository at this point in the history
No django 2.0
  • Loading branch information
moshthepitt authored Jul 8, 2019
2 parents 0bb4345 + 796597b commit d9bc4ce
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 22 deletions.
41 changes: 22 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
"""
Setup.py for django-vega-admin
"""
from setuptools import setup, find_packages
from setuptools import find_packages, setup

setup(
name='django-vega-admin',
version=__import__('vega_admin').__version__,
description='Simple and fast automated CRUD for any Django model',
license='MIT',
author='Kelvin Jayanoris',
author_email='[email protected]',
url='https://github.com/moshthepitt/django-vega-admin',
packages=find_packages(exclude=['docs', 'tests']),
name="django-vega-admin",
version=__import__("vega_admin").__version__,
description="Simple and fast automated CRUD for any Django model",
license="MIT",
author="Kelvin Jayanoris",
author_email="[email protected]",
url="https://github.com/moshthepitt/django-vega-admin",
packages=find_packages(exclude=["docs", "tests"]),
install_requires=[
'Django >=2.0.11',
'django-crispy-forms',
'django-braces',
'django-filter',
'django-tables2',
'tablib',
'pyyaml>=4.2b1', # fixes security vulnerability
"Django >=2.1.10",
"django-crispy-forms",
"django-braces",
"django-filter",
"django-tables2",
"tablib",
"pyyaml>=4.2b1", # fixes security vulnerability
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Framework :: Django",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
],
)
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist =
flake8
pylint
py{36,37}-django{20,21,22}
py{36,37}-django{21,22}

[testenv:flake8]
deps =
Expand All @@ -28,7 +28,6 @@ basepython =
py37: python3.7
commands =
pip install -r requirements/dev.txt
django20: pip install Django>=2.0,<2.1
django21: pip install Django>=2.1,<2.2
django22: pip install Django>=2.2,<2.3
coverage erase
Expand Down
2 changes: 1 addition & 1 deletion vega_admin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Main init file for vega_admin
"""
VERSION = (0, 0, 9)
VERSION = (0, 0, 10)
__version__ = ".".join(str(v) for v in VERSION)
# pylint: disable=invalid-name
default_app_config = "vega_admin.apps.VegaAdminConfig" # noqa

0 comments on commit d9bc4ce

Please sign in to comment.