Skip to content

Commit aac3b63

Browse files
committed
📚 update coding style and docs. related to #64
1 parent 92ad822 commit aac3b63

10 files changed

+257
-239
lines changed

.moban.d/custom_travis.yml.jj2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ env:
77
- DJANGO_VERSION=1.11.15
88
- DJANGO_VERSION=2.0.8
99
- DJANGO_VERSION=2.1
10+
- DJANGO_VERSION=3.1.2
1011
{%endblock%}1
1112

1213
{%block extra_jobs%}

.moban.d/verified_frameworks.rst.jj2

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Tested Django Versions
22
========================
33

4+
.. image:: https://img.shields.io/badge/django-3.1.2-green.svg
5+
:target: http://travis-ci.org/pyexcel/django-excel
6+
47
.. image:: https://img.shields.io/badge/django-2.1-green.svg
58
:target: http://travis-ci.org/pyexcel/django-excel
69

@@ -18,9 +21,3 @@ Tested Django Versions
1821

1922
.. image:: https://img.shields.io/badge/django-1.8.18-green.svg
2023
:target: http://travis-ci.org/pyexcel/django-excel
21-
22-
.. image:: https://img.shields.io/badge/django-1.7.11-green.svg
23-
:target: http://travis-ci.org/pyexcel/django-excel
24-
25-
.. image:: https://img.shields.io/badge/django-1.6.11-green.svg
26-
:target: http://travis-ci.org/pyexcel/django-excel

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ env:
1010
- DJANGO_VERSION=1.11.15
1111
- DJANGO_VERSION=2.0.8
1212
- DJANGO_VERSION=2.1
13+
- DJANGO_VERSION=3.1.2
1314
python:
1415
- 3.6
1516
- 3.7

CHANGELOG.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Change log
22
================================================================================
33

4-
-
4+
0.0.11 - tbd
55
--------------------------------------------------------------------------------
66

7-
**Added**
7+
**Updated**
88

9-
#. Support for django 3.x.x
9+
#. Test Support for django 3.x.x
1010
#. Tested against django 3.x.x
1111

1212
0.0.10 - 11.01.2018

README.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,9 @@ and export from SQL databases, information analysis and persistence. It uses
231231
Tested Django Versions
232232
========================
233233

234+
.. image:: https://img.shields.io/badge/django-3.1.2-green.svg
235+
:target: http://travis-ci.org/pyexcel/django-excel
236+
234237
.. image:: https://img.shields.io/badge/django-2.1-green.svg
235238
:target: http://travis-ci.org/pyexcel/django-excel
236239

@@ -249,12 +252,6 @@ Tested Django Versions
249252
.. image:: https://img.shields.io/badge/django-1.8.18-green.svg
250253
:target: http://travis-ci.org/pyexcel/django-excel
251254

252-
.. image:: https://img.shields.io/badge/django-1.7.11-green.svg
253-
:target: http://travis-ci.org/pyexcel/django-excel
254-
255-
.. image:: https://img.shields.io/badge/django-1.6.11-green.svg
256-
:target: http://travis-ci.org/pyexcel/django-excel
257-
258255
Installation
259256
================================================================================
260257

changelog.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ name: django-excel
22
organisation: pyexcel-webwares
33
releases:
44
- changes:
5-
- action: Added
5+
- action: Updated
66
details:
7-
- 'Support for django 3.x.x'
7+
- 'Test Support for django 3.x.x'
88
- 'Tested against django 3.x.x'
9+
date: tbd
10+
version: 0.0.11
911
- changes:
1012
- action: Added
1113
details:

django_excel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ keywords:
2828
- Django
2929
description:
3030
A django middleware that provides one application programming interface to read and write data in different excel file formats
31-
flake8_options: --ignore=F401,E402
31+
flake8_options: --ignore=F401,E402,E501,W503
3232
moban_command: false

lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pip install flake8
2-
flake8 --exclude=.moban.d,docs,setup.py --ignore=F401,E402 --builtins=unicode,xrange,long . && python setup.py checkdocs
2+
flake8 --exclude=.moban.d,docs,setup.py --ignore=F401,E402,E501,W503 --builtins=unicode,xrange,long . && python setup.py checkdocs

0 commit comments

Comments
 (0)