Skip to content

Commit

Permalink
Merge pull request #57 from ambitioninc/develop
Browse files Browse the repository at this point in the history
2.1.0
  • Loading branch information
somewes committed Jul 11, 2019
2 parents 6c5f670 + 4b96179 commit f51eb06
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
dist: xenial
language: python

sudo: false

python:
- "3.6"
- "3.7"

env:
matrix:
- DJANGO=2.0
- DJANGO=2.1
- DJANGO=2.2
- DJANGO=master

addons:
postgresql: '9.5'
postgresql: '9.6'

matrix:
exclude:
- { python: "3.7", env: DJANGO=2.0 }

include:
- { python: "3.6", env: TOXENV=flake8 }

Expand Down
6 changes: 6 additions & 0 deletions dynamic_initial_data/docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Release Notes
=============

v2.1.0
------
* Python 3.7
* Django 2.1
* Django 2.2

v2.0.0
------
* Drop Django 1.10 support
Expand Down
2 changes: 1 addition & 1 deletion dynamic_initial_data/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.0'
__version__ = '2.1.0'
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,28 @@ def get_version():
version=get_version(),
description='Dynamic initial data fixtures for Django apps',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/ambitioninc/django-dynamic-initial-data',
author='',
author_email='opensource@ambition.com',
keywords='Django fixtures',
packages=find_packages(),
classifiers=[
'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',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
],
license='MIT',
install_requires=[
'Django>=1.10',
'django-manager-utils>=1.1.1',
'Django>=2.0',
'django-manager-utils>=1.4.0',
],
tests_require=[
'psycopg2',
Expand Down
7 changes: 5 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
envlist =
flake8
py{36}-django20
py{36}-django21
py{36}-djangomaster
py{36,37}-django21
py{36,37}-django22
py{36,37}-djangomaster

[testenv]
setenv =
DB = postgres
deps =
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<2.3
djangomaster: https://github.com/django/django/archive/master.tar.gz
-rrequirements/requirements-testing.txt
commands =
Expand All @@ -25,4 +27,5 @@ commands = flake8 dynamic_initial_data
DJANGO =
2.0: django20
2.1: django21
2.2: django22
master: djangomaster

0 comments on commit f51eb06

Please sign in to comment.