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

Commit

Permalink
Merge pull request #36 from sergeyklay/deprecate-package
Browse files Browse the repository at this point in the history
Deprecate package
  • Loading branch information
sergeyklay authored Sep 5, 2021
2 parents 1f74907 + 65fd597 commit 2ff7574
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 53 deletions.
28 changes: 0 additions & 28 deletions .github/dependabot.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,6 @@ on:
branches:
- master

schedule:
- cron: '0 11 * * *'
# | | | | |
# | | | | |____ day of the week (0 - 6 or SUN-SAT)
# | | | |____ month (1 - 12 or JAN-DEC)
# | | |____ day of the month (1 - 31)
# | |____ hour (0 - 23)
# |____ minute (0 - 59)

env:
PYTHONUNBUFFERED: '1'

Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ This file contains a brief summary of new features and dependency changes or
releases, in reverse chronological order.


2.2.1 (2021-XX-XX)
2.3.0 (2021-XX-XX)
------------------

Features
^^^^^^^^

* **Deprecate package in favour of django-environ.**
* Add Elasticsearch7 to search scheme.


Bug Fixes
^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# or remove some set of files from the sdist.

# Include all files matching any of the listed patterns.
include AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst LICENSE README.rst SECURITY.rst *.yml
include AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst LICENSE README.rst *.yml
graft .github

# The contents of the directory tree tests will first be added to the sdist.
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@

.. teaser-begin
**Disclaimer:** This package is no longer maintained.
Please use https://github.com/joke2k/django-environ instead.

----


``django-environ-2`` is the Python package that allows you to use
`Twelve-factor methodology <http://www.12factor.net/>`_ to configure your
Django application with environment variables.
Expand Down
10 changes: 0 additions & 10 deletions SECURITY.rst

This file was deleted.

2 changes: 1 addition & 1 deletion environ/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@


__copyright__ = 'Copyright (C) 2021 Serghei Iakovlev'
__version__ = '2.2.1'
__version__ = '2.3.0'
__license__ = 'MIT'
__author__ = 'Daniele Faraglia'
__author_email__ = '[email protected]'
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ def changes():
'',
f"`Full changelog <{find_meta('url')}/en/latest/changelog.html>`_.", # noqa: E501
'',
read_file(path.join(PKG_DIR, 'SECURITY.rst')),
'',
read_file(path.join(PKG_DIR, 'AUTHORS.rst')),
)

Expand Down Expand Up @@ -148,7 +146,7 @@ def get_version_string():
]

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

DEPENDENCY_LINKS = []

Expand Down

0 comments on commit 2ff7574

Please sign in to comment.