File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
postgres is a high-value abstraction over psycopg2
2
2
3
- https://postgres.readthedocs.org/
3
+ https://postgres-py .readthedocs.org/
Original file line number Diff line number Diff line change 48
48
# built documents.
49
49
#
50
50
# The short X.Y version.
51
- version = '0 .0'
51
+ version = '1 .0'
52
52
# The full version, including alpha/beta/rc tags.
53
- release = '0 .0.0'
53
+ release = '1 .0.0'
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
Original file line number Diff line number Diff line change 166
166
from psycopg2 .pool import ThreadedConnectionPool as ConnectionPool
167
167
168
168
169
+ __version__ = '1.0.0'
170
+
171
+
169
172
# A Helper
170
173
# ========
171
174
# Heroku gives us an URL, psycopg2 wants a DSN. Convert!
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
3
setup ( name = 'postgres'
4
+ , author = 'Gittip, LLC'
4
5
, description = "postgres is a high-value abstraction over psycopg2."
5
- , version = '0.0.0'
6
+ , url = 'https://postgres-py.readthedocs.org'
7
+ , version = '1.0.0'
6
8
, py_modules = ['postgres' ]
7
9
, install_requires = ['psycopg2 >= 2.0.0' ]
8
10
)
You can’t perform that action at this time.
0 commit comments