Skip to content

Commit 7d65b1b

Browse files
Updated package version to 0.1.4. setup.py updates.
1 parent b775ada commit 7d65b1b

5 files changed

Lines changed: 8 additions & 9 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ django-deno
3030
.. _SystemJS: https://github.com/systemjs/systemjs
3131
.. _terser: https://terser.org
3232

33-
`Deno`_ front-end integration for `Django`_, version 0.1.3.
33+
`Deno`_ front-end integration for `Django`_, version 0.1.4.
3434

3535
* Currently only `drollup`_ / `terser`_ are supported, the deno server may be extended to support any of deno api, if
3636
applicable.
@@ -73,7 +73,7 @@ To install the development version of ``django_deno`` in python3 ``virtualenv``:
7373

7474
To install the stable version of ``django_deno`` in python3 ``virtualenv``::
7575

76-
python -m pip install -U git+https://github.com/Dmitri-Sintsov/django-deno.git@v0.1.3
76+
python -m pip install -U git+https://github.com/Dmitri-Sintsov/django-deno.git@v0.1.4
7777

7878
Description
7979
-----------

django_deno/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.3'
1+
__version__ = '0.1.4'

django_deno/deno/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const httpPort = args['port'];
1717

1818
const apiStatus = {
1919
"server": "Django deno server",
20-
"version": "0.1.3",
20+
"version": "0.1.4",
2121
"pid": Deno.pid,
2222
};
2323

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Import this module to the project to test automatic importmap generation for virtualenv library modules static file finders.
22

33
let DjangoDenoSettings = {
4-
version: '0.1.3',
4+
version: '0.1.4',
55
};
66

77
export default DjangoDenoSettings;

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# -*- coding: utf-8 -*-
33

44
# Setup ~/.pypirc at https://packaging.python.org/guides/migrating-to-pypi-org/
5-
# python setup.py sdist
6-
# pip3 install twine
7-
# twine upload -r test dist/django-deno-0.1.0.tar.gz
5+
# python setup.py bdist_wheel
6+
# pip3 install -U setuptools wheel twine
7+
# twine upload -r test dist/django_deno-0.1.4-py2.py3-none-any.whl
88

99
import os
1010
import sys
@@ -46,7 +46,6 @@
4646
]
4747

4848
packages = find_namespace_packages(
49-
where='.',
5049
include=['django_deno', 'django_deno.*'],
5150
)
5251

0 commit comments

Comments
 (0)