mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
Moved to Jazzband.
This commit is contained in:
parent
483db6616a
commit
a3334a05ec
5 changed files with 43 additions and 26 deletions
46
.travis.yml
46
.travis.yml
|
|
@ -1,28 +1,36 @@
|
|||
language: python
|
||||
python:
|
||||
- 2.6
|
||||
- 2.7
|
||||
- 2.6
|
||||
- 2.7
|
||||
before_install:
|
||||
- export DJANGO_SETTINGS_MODULE=dbtemplates.test_settings
|
||||
- export DJANGO_SETTINGS_MODULE=dbtemplates.test_settings
|
||||
install:
|
||||
- pip install -e .
|
||||
- pip install -r requirements/tests.txt Django==$DJANGO
|
||||
- pip install -e .
|
||||
- pip install -r requirements/tests.txt Django==$DJANGO
|
||||
before_script:
|
||||
- flake8 dbtemplates --ignore=E501
|
||||
- flake8 dbtemplates --ignore=E501
|
||||
script:
|
||||
- coverage run --branch --source=dbtemplates `which django-admin.py` test dbtemplates
|
||||
- coverage report --omit="dbtemplates/test*,dbtemplates/migrations*"
|
||||
- coverage run --branch --source=dbtemplates `which django-admin.py` test dbtemplates
|
||||
- coverage report --omit="dbtemplates/test*,dbtemplates/migrations*"
|
||||
env:
|
||||
- DJANGO=1.4.5
|
||||
- DJANGO=1.5.1
|
||||
- DJANGO=1.7.8
|
||||
- DJANGO=1.8
|
||||
- DJANGO=1.4.5
|
||||
- DJANGO=1.5.1
|
||||
- DJANGO=1.7.8
|
||||
- DJANGO=1.8
|
||||
matrix:
|
||||
exclude:
|
||||
- python: 2.6
|
||||
env: DJANGO=1.7.8
|
||||
- python: 2.6
|
||||
env: DJANGO=1.8
|
||||
branches:
|
||||
only:
|
||||
- develop
|
||||
- python: 2.6
|
||||
env: DJANGO=1.7.8
|
||||
- python: 2.6
|
||||
env: DJANGO=1.8
|
||||
deploy:
|
||||
provider: pypi
|
||||
user: jazzband
|
||||
distributions: "sdist bdist_wheel"
|
||||
password:
|
||||
secure: B7imNYNndd2HEr79+3/jXLjFo/MdzzHUkH1NJ7G+YFtYjEkRFEaVuPXhuX1LYO9/qzYDcqHVrnsg65ZUXCftAg0/zFZ7zhEn/WEYZA2nkPosoSrYNV+s3XH/DMmpXdG6mKRN4D0mLQXaCwGeuQ2wHFOg7HCsz+tojFwYnEyN9ag=
|
||||
on:
|
||||
tags: true
|
||||
repo: jazzband/django-dbtemplates
|
||||
python: "2.7"
|
||||
condition: "$DJANGO = 1.8"
|
||||
|
|
|
|||
10
README.rst
10
README.rst
|
|
@ -1,9 +1,13 @@
|
|||
django-dbtemplates
|
||||
==================
|
||||
|
||||
.. image:: https://secure.travis-ci.org/jezdez/django-dbtemplates.png?branch=develop
|
||||
.. image:: https://secure.travis-ci.org/jazzband/django-dbtemplates.png
|
||||
:alt: Build Status
|
||||
:target: http://travis-ci.org/jezdez/django-dbtemplates
|
||||
:target: http://travis-ci.org/jazzband/django-dbtemplates
|
||||
|
||||
.. image:: https://jazzband.co/static/img/badge.svg
|
||||
:alt: Jazzband
|
||||
:target: https://jazzband.co/
|
||||
|
||||
``dbtemplates`` is a Django app that consists of two parts:
|
||||
|
||||
|
|
@ -18,7 +22,7 @@ Please see http://django-dbtemplates.readthedocs.org/ for more details.
|
|||
|
||||
The source code and issue tracker can be found on Github:
|
||||
|
||||
https://github.com/jezdez/django-dbtemplates
|
||||
https://github.com/jazzband/django-dbtemplates
|
||||
|
||||
Compatibility Roadmap
|
||||
---------------------
|
||||
|
|
|
|||
|
|
@ -1,6 +1,11 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
v1.4 (unreleased)
|
||||
-----------------
|
||||
|
||||
* Moved to Jazzband: https://github.com/jazzband/django-dbtemplates
|
||||
|
||||
v1.3.2 (2015-06-15)
|
||||
-------------------
|
||||
|
||||
|
|
@ -34,7 +39,7 @@ v1.3 (2012-05-07)
|
|||
memcache's inability to stomach spaces.
|
||||
|
||||
* Moved test runner to use nose_ and a hosted CI project at Travis_:
|
||||
http://travis-ci.org/jezdez/django-dbtemplates
|
||||
http://travis-ci.org/jazzband/django-dbtemplates
|
||||
|
||||
.. _nose: http://nose.rtfd.org/
|
||||
.. _Travis: http://travis-ci.org
|
||||
|
|
@ -355,4 +360,4 @@ Support
|
|||
|
||||
Please leave your questions and messages on the designated site:
|
||||
|
||||
http://github.com/jezdez/django-dbtemplates/issues/
|
||||
http://github.com/jazzband/django-dbtemplates/issues/
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ and :ref:`django-admin command <commands>`, integrates with Django's
|
|||
|
||||
Please see http://django-dbtemplates.readthedocs.org/ for more details.
|
||||
|
||||
The source code and issue tracker can be found on Github: https://github.com/jezdez/django-dbtemplates
|
||||
The source code and issue tracker can be found on Github: https://github.com/jazzband/django-dbtemplates
|
||||
|
||||
.. _template loader: http://docs.djangoproject.com/en/dev/ref/templates/api/#loading-templates
|
||||
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ Setup
|
|||
4. Sync your database ``python manage.py syncdb``
|
||||
5. Restart your Django server
|
||||
|
||||
.. _Git repository: http://github.com/jezdez/django-dbtemplates/
|
||||
.. _Git repository: http://github.com/jazzband/django-dbtemplates/
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
|
|
|||
Loading…
Reference in a new issue