Skip to content

Commit 1e1b8b2

Browse files
committed
Small fixes
1 parent f35ed59 commit 1e1b8b2

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2828
run: |
2929
python setup.py sdist bdist_wheel
30-
twine upload --repository testpypi dist/*
30+
twine upload dist/*

README.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ The project is based on the project `django-rest-framework-datatables <https://g
157157
Requirements
158158
------------
159159

160-
- Python (2.7, 3.4, 3.5, 3.6)
161-
- Django (1.11, 2.0, 2.1)
162-
- Django REST Framework (3.9)
160+
- Python (2.7, 3.4, 3.5, 3.6, 3.7, 3.8)
161+
- Django (1.9, 1.11, 2.0, 2.1, 2.2, 3.0)
162+
- Django REST Framework (3.9, 3.10, 3.11)
163163

164164
Example project
165165
---------------
@@ -229,4 +229,3 @@ If you want to check the coverage, use:
229229
.. |dj-versions| image:: https://img.shields.io/pypi/djversions/djangorestframework-datatables-editor.svg?style=flat-square
230230
:target: https://img.shields.io/pypi/djversions/djangorestframework-datatables-editor.svg
231231
:alt: Django versions
232-

requirements-docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Sphinx==3.0.3
2-
sphinx-rtd-themee==0.4.3
2+
sphinx-rtd-theme==0.4.3
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
__version__ = '0.3.2'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020

2121
def get_long_description():
2222
""" Return rst formatted readme and changelog. """
23-
files_to_join = ['README.rst', 'changelog.rst']
23+
files_to_join = ['README.rst', 'docs/changelog.rst']
2424
description = []
2525
for file in files_to_join:
26-
with open('README.rst') as f:
26+
with open(file) as f:
2727
description.append(f.read())
2828
return '\n\n'.join(description)
2929

0 commit comments

Comments
 (0)