Skip to content

Commit 98a8174

Browse files
Do not graft non-existing directory for distutils. Update version to 0.1.2.
1 parent abecfb5 commit 98a8174

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
graft django_deno
2-
graft rollup

README.rst

Lines changed: 8 additions & 3 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.1.
33+
`Deno`_ front-end integration for `Django`_, version 0.1.2.
3434

3535
* Currently only `drollup`_ / `terser`_ are supported, the deno server may be extended to support any of deno api, if
3636
applicable.
@@ -58,15 +58,20 @@ In Windows run PowerShell then invoke::
5858
``DENO_INSTALL`` environment variable specifies directory where `Deno`_ is installed.
5959

6060
* In case currently installed `Deno`_ version is older than 1.19, please use ``deno upgrade`` command to install the
61-
latest `Deno`_ version.
61+
newer `Deno`_ version. Older version has no ``deno vendor`` command.
62+
63+
* Currently `drollup`_ Deno package does not support Deno version newer than 1.21. To overcome that limitation, please use
64+
Deno version 1.21::
65+
66+
deno upgrade --version 1.21.3
6267

6368
To install the development version of ``django_deno`` in python3 ``virtualenv``::
6469

6570
python -m pip install -U git+https://github.com/Dmitri-Sintsov/django-deno.git
6671

6772
To install the stable version of ``django_deno`` in python3 ``virtualenv``::
6873

69-
python -m pip install -U git+https://github.com/Dmitri-Sintsov/django-deno.git@v0.1.1
74+
python -m pip install -U git+https://github.com/Dmitri-Sintsov/django-deno.git@v0.1.2
7075

7176
Description
7277
-----------

django_deno/__init__.py

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

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.1",
20+
"version": "0.1.2",
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.1',
4+
version: '0.1.2',
55
};
66

77
export default DjangoDenoSettings;

0 commit comments

Comments
 (0)