Skip to content

Commit

Permalink
prepping release 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Jun 19, 2018
1 parent 06bb0e5 commit 3f8ac5e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Pyro5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Pyro - Python Remote Objects. Copyright by Irmen de Jong ([email protected]).
"""

__version__ = "5.0.dev0"
__version__ = "5.0"


def __configure_logging():
Expand Down
2 changes: 1 addition & 1 deletion Readme.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pyro5 [work in progress]
========================

*Remote objects communication library, fifth incarnation*
*Remote objects communication library, fifth major version*

.. image:: https://img.shields.io/badge/say-thanks-ff69b4.svg
:target: https://saythanks.io/to/irmen
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ test=pytest

[pycodestyle]
max-line-length = 140
exclude = .git,__pycache__,.tox,docs,tests,build,dist
exclude = .git,__pycache__,.tox,docs,tests,build,dist,.eggs,.cache
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import re
import sys
from setuptools import setup


if sys.version_info < (3, 4):
raise SystemExit("Pyro5 requires Python 3.4 or newer")


with open("Readme.rst", encoding="utf-8") as f:
long_description = f.read()

Expand All @@ -16,7 +21,7 @@
setup(
name='Pyro5',
version=pyro_version,
description='Remote object communication library, fifth incarnation',
description='Remote object communication library, fifth major version',
long_description=long_description,
url='https://github.com/irmen/Pyro5',
author='Irmen de Jong',
Expand Down

0 comments on commit 3f8ac5e

Please sign in to comment.