Skip to content
This repository was archived by the owner on Sep 5, 2021. It is now read-only.

Commit 2ff7574

Browse files
authored
Merge pull request #36 from sergeyklay/deprecate-package
Deprecate package
2 parents 1f74907 + 65fd597 commit 2ff7574

File tree

8 files changed

+17
-53
lines changed

8 files changed

+17
-53
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,6 @@ on:
2020
branches:
2121
- master
2222

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-
3223
env:
3324
PYTHONUNBUFFERED: '1'
3425

CHANGELOG.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,16 @@ This file contains a brief summary of new features and dependency changes or
55
releases, in reverse chronological order.
66

77

8-
2.2.1 (2021-XX-XX)
8+
2.3.0 (2021-XX-XX)
99
------------------
1010

11+
Features
12+
^^^^^^^^
13+
14+
* **Deprecate package in favour of django-environ.**
15+
* Add Elasticsearch7 to search scheme.
16+
17+
1118
Bug Fixes
1219
^^^^^^^^^
1320

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# or remove some set of files from the sdist.
1111

1212
# 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
1414
graft .github
1515

1616
# The contents of the directory tree tests will first be added to the sdist.

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818

1919
.. teaser-begin
2020
21+
**Disclaimer:** This package is no longer maintained.
22+
Please use https://github.com/joke2k/django-environ instead.
23+
24+
----
25+
26+
2127
``django-environ-2`` is the Python package that allows you to use
2228
`Twelve-factor methodology <http://www.12factor.net/>`_ to configure your
2329
Django application with environment variables.

SECURITY.rst

Lines changed: 0 additions & 10 deletions
This file was deleted.

environ/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646

4747
__copyright__ = 'Copyright (C) 2021 Serghei Iakovlev'
48-
__version__ = '2.2.1'
48+
__version__ = '2.3.0'
4949
__license__ = 'MIT'
5050
__author__ = 'Daniele Faraglia'
5151
__author_email__ = 'daniele.faraglia@gmail.com'

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ def changes():
5656
'',
5757
f"`Full changelog <{find_meta('url')}/en/latest/changelog.html>`_.", # noqa: E501
5858
'',
59-
read_file(path.join(PKG_DIR, 'SECURITY.rst')),
60-
'',
6159
read_file(path.join(PKG_DIR, 'AUTHORS.rst')),
6260
)
6361

@@ -148,7 +146,7 @@ def get_version_string():
148146
]
149147

150148
# Dependencies that are downloaded by pip on installation and why.
151-
INSTALL_REQUIRES = []
149+
INSTALL_REQUIRES = ['django-environ']
152150

153151
DEPENDENCY_LINKS = []
154152

0 commit comments

Comments
 (0)