This repository was archived by the owner on Sep 5, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +17
-53
lines changed Expand file tree Collapse file tree 8 files changed +17
-53
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 20
20
branches :
21
21
- master
22
22
23
- schedule :
24
- - cron : ' 0 11 * * *'
25
- # | | | | |
26
- # | | | | |____ day of the week (0 - 6 or SUN-SAT)
27
- # | | | |____ month (1 - 12 or JAN-DEC)
28
- # | | |____ day of the month (1 - 31)
29
- # | |____ hour (0 - 23)
30
- # |____ minute (0 - 59)
31
-
32
23
env :
33
24
PYTHONUNBUFFERED : ' 1'
34
25
Original file line number Diff line number Diff line change @@ -5,9 +5,16 @@ This file contains a brief summary of new features and dependency changes or
5
5
releases, in reverse chronological order.
6
6
7
7
8
- 2.2.1 (2021-XX-XX)
8
+ 2.3.0 (2021-XX-XX)
9
9
------------------
10
10
11
+ Features
12
+ ^^^^^^^^
13
+
14
+ * **Deprecate package in favour of django-environ. **
15
+ * Add Elasticsearch7 to search scheme.
16
+
17
+
11
18
Bug Fixes
12
19
^^^^^^^^^
13
20
Original file line number Diff line number Diff line change 10
10
# or remove some set of files from the sdist.
11
11
12
12
# Include all files matching any of the listed patterns.
13
- include AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst LICENSE README.rst SECURITY.rst *.yml
13
+ include AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst LICENSE README.rst *.yml
14
14
graft .github
15
15
16
16
# The contents of the directory tree tests will first be added to the sdist.
Original file line number Diff line number Diff line change 18
18
19
19
.. teaser-begin
20
20
21
+ **Disclaimer: ** This package is no longer maintained.
22
+ Please use https://github.com/joke2k/django-environ instead.
23
+
24
+ ----
25
+
26
+
21
27
``django-environ-2 `` is the Python package that allows you to use
22
28
`Twelve-factor methodology <http://www.12factor.net/ >`_ to configure your
23
29
Django application with environment variables.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 45
45
46
46
47
47
__copyright__ = 'Copyright (C) 2021 Serghei Iakovlev'
48
- __version__ = '2.2.1 '
48
+ __version__ = '2.3.0 '
49
49
__license__ = 'MIT'
50
50
__author__ = 'Daniele Faraglia'
51
51
__author_email__ = 'daniele.faraglia@gmail.com'
Original file line number Diff line number Diff line change @@ -56,8 +56,6 @@ def changes():
56
56
'' ,
57
57
f"`Full changelog <{ find_meta ('url' )} /en/latest/changelog.html>`_." , # noqa: E501
58
58
'' ,
59
- read_file (path .join (PKG_DIR , 'SECURITY.rst' )),
60
- '' ,
61
59
read_file (path .join (PKG_DIR , 'AUTHORS.rst' )),
62
60
)
63
61
@@ -148,7 +146,7 @@ def get_version_string():
148
146
]
149
147
150
148
# Dependencies that are downloaded by pip on installation and why.
151
- INSTALL_REQUIRES = []
149
+ INSTALL_REQUIRES = ['django-environ' ]
152
150
153
151
DEPENDENCY_LINKS = []
154
152
You can’t perform that action at this time.
0 commit comments