Skip to content

Commit

Permalink
Update to next version number 5.0.1
Browse files Browse the repository at this point in the history
Also, do not inhibit installation under Python 3.6 since 
it is unlikely that anything will break there.
  • Loading branch information
Cito committed Apr 9, 2016
1 parent 8ba228f commit cccedf0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/about.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ on the PyGres95 code written by Pascal Andre (andre@chimay.via.ecp.fr).
D'Arcy (darcy@druid.net) renamed it to PyGreSQL starting with
version 2.0 and serves as the "BDFL" of PyGreSQL.

The current version PyGreSQL 5.0 needs PostgreSQL 9.0 or newer and Python 2.6,
The current version PyGreSQL 5.0.1 needs PostgreSQL 9.0 or newer and Python 2.6,
2.7 or 3.3 to 3.5. If you need to support older PostgreSQL versions or older
Python 2.x versions, you can resort to PyGreSQL 4.x that still supports them.
2 changes: 1 addition & 1 deletion mktar
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh

VERSION=5.0
VERSION=5.0.1
DISTDIR=/u/WEB/pyg/files

# some safety tests
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
"""

version = '5.0'
version = '5.0.1'


import sys

if (not (2, 6) <= sys.version_info[:2] <= (2, 7)
and not (3, 3) <= sys.version_info[:2] <= (3, 5)):
if (not (2, 6) <= sys.version_info[:2] < (3, 0)
and not (3, 3) <= sys.version_info[:2] < (4, 0)):
raise Exception("Sorry, PyGreSQL %s"
" does not support this Python version" % version)

Expand Down

0 comments on commit cccedf0

Please sign in to comment.