Skip to content
Merged

4.0.0 #1708

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
include CHANGES
include INSTALL
include LICENSE
include README.rst
include README.md
exclude __pycache__
recursive-include tests *
recursive-exclude tests *.pyc
9 changes: 0 additions & 9 deletions RELEASE

This file was deleted.

5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@

# General information about the project.
project = "redis-py"
copyright = "2021, Redis Inc."
copyright = "2021, Redis Inc"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "4.0.9"
version = "4.0"

# The full version, including alpha/beta/rc tags.
release = "4.0.0"

Expand Down
4 changes: 3 additions & 1 deletion redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def int_or_str(value):
return value


__version__ = '4.0.0rc2'
__version__ = "4.0.0"


VERSION = tuple(map(int_or_str, __version__.split('.')))

__all__ = [
Expand Down