Skip to content

Commit dca93b8

Browse files
committed
more minor fixes [skip ci]
1 parent 06e5fb1 commit dca93b8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ DRP does not include any JavaScript code, leaving the implementation of interact
1919

2020
[![Travis Build Status](https://img.shields.io/travis/wq/django-rest-pandas.svg)](https://travis-ci.org/wq/django-rest-pandas)
2121
[![Python Support](https://img.shields.io/pypi/pyversions/rest-pandas.svg)](https://pypi.python.org/pypi/rest-pandas)
22-
[![Django Support](https://img.shields.io/badge/Django-1.7%2C%201.8-blue.svg)](https://pypi.python.org/pypi/rest-pandas)
22+
[![Django Support](https://img.shields.io/badge/Django-1.7%2C%201.8%2C%201.9-blue.svg)](https://pypi.python.org/pypi/rest-pandas)
2323
[![Django REST Framework Support](https://img.shields.io/badge/DRF-2.4%2C%203.3-blue.svg)](https://pypi.python.org/pypi/rest-pandas)
2424

2525
**Note:** Support for Django REST Framework 2.4 will be dropped in DRP 0.5.
@@ -73,7 +73,7 @@ The underlying implementation is a set of [serializers] that take the normal ser
7373
pip3 install rest-pandas
7474
```
7575

76-
**NOTE:** Django REST Pandas relies on pandas, which itself relies on NumPy and other scientific Python libraries. If you are having trouble installing DRP due to dependency issues, you may want to pre-install Pandas using another tool. For example, on Ubuntu 14.04 LTS you can pre-install pandas using this command:
76+
**NOTE:** Django REST Pandas relies on pandas, which itself relies on NumPy and other scientific Python libraries. If you are having trouble installing DRP due to dependency issues, you may want to pre-install pandas using another tool. For example, on Ubuntu 14.04 LTS you can pre-install pandas using this command:
7777

7878
```bash
7979
sudo apt-get install python3-pandas
@@ -93,7 +93,6 @@ The example below allows you to create a simple API for an existing Pandas DataF
9393
from rest_pandas import PandasSimpleView
9494
import pandas as pd
9595

96-
9796
class TimeSeriesView(PandasSimpleView):
9897
def get_data(self):
9998
return pd.read_csv('data.csv')

0 commit comments

Comments
 (0)