Codebase list aiopg / 0b820d2
New upstream version 1.4.0 Piotr Ożarowski 1 year, 5 months ago
7 changed file(s) with 48 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
0 1.4.0 (2022-10-26)
1 ^^^^^^^^^^^^^^^^^^
2
3 * Add python 3.11 and drop python 3.6 support` #892 <https://github.com/aio-libs/aiopg/pull/892>`_
4
5
6 1.3.5 (2022-09-25)
7 ^^^^^^^^^^^^^^^^^^
8
9 * Fix pool size limit check for unlimited pools `#888 <https://github.com/aio-libs/aiopg/pull/888>`_
10
11
012 1.3.4 (2022-06-30)
113 ^^^^^^^^^^^^^^^^^^
214
00 Metadata-Version: 2.1
11 Name: aiopg
2 Version: 1.3.4
2 Version: 1.4.0
33 Summary: Postgres integration with asyncio.
44 Home-page: https://aiopg.readthedocs.io
55 Author: Andrew Svetlov
2121 Classifier: Intended Audience :: Developers
2222 Classifier: Programming Language :: Python :: 3
2323 Classifier: Programming Language :: Python :: 3 :: Only
24 Classifier: Programming Language :: Python :: 3.6
2524 Classifier: Programming Language :: Python :: 3.7
2625 Classifier: Programming Language :: Python :: 3.8
2726 Classifier: Programming Language :: Python :: 3.9
2827 Classifier: Programming Language :: Python :: 3.10
28 Classifier: Programming Language :: Python :: 3.11
2929 Classifier: Operating System :: POSIX
3030 Classifier: Operating System :: MacOS :: MacOS X
3131 Classifier: Operating System :: Microsoft :: Windows
3434 Classifier: Topic :: Database
3535 Classifier: Topic :: Database :: Front-Ends
3636 Classifier: Framework :: AsyncIO
37 Requires-Python: >=3.6
37 Requires-Python: >=3.7
3838 Description-Content-Type: text/x-rst
3939 Provides-Extra: sa
4040 License-File: LICENSE
128128 Changelog
129129 ---------
130130
131 1.4.0 (2022-10-26)
132 ^^^^^^^^^^^^^^^^^^
133
134 * Add python 3.11 and drop python 3.6 support` #892 <https://github.com/aio-libs/aiopg/pull/892>`_
135
136
137 1.3.5 (2022-09-25)
138 ^^^^^^^^^^^^^^^^^^
139
140 * Fix pool size limit check for unlimited pools `#888 <https://github.com/aio-libs/aiopg/pull/888>`_
141
142
131143 1.3.4 (2022-06-30)
132144 ^^^^^^^^^^^^^^^^^^
133145
4040 "Transaction",
4141 )
4242
43 __version__ = "1.3.4"
43 __version__ = "1.4.0"
4444
4545 version = f"{__version__}, Python {sys.version}"
4646
351351 if self._free:
352352 return
353353
354 if override_min and self.size < (self.maxsize or 0):
354 if override_min and (not self.maxsize or self.size < self.maxsize):
355355 self._acquiring += 1
356356 try:
357357 conn = await connect(
00 Metadata-Version: 2.1
11 Name: aiopg
2 Version: 1.3.4
2 Version: 1.4.0
33 Summary: Postgres integration with asyncio.
44 Home-page: https://aiopg.readthedocs.io
55 Author: Andrew Svetlov
2121 Classifier: Intended Audience :: Developers
2222 Classifier: Programming Language :: Python :: 3
2323 Classifier: Programming Language :: Python :: 3 :: Only
24 Classifier: Programming Language :: Python :: 3.6
2524 Classifier: Programming Language :: Python :: 3.7
2625 Classifier: Programming Language :: Python :: 3.8
2726 Classifier: Programming Language :: Python :: 3.9
2827 Classifier: Programming Language :: Python :: 3.10
28 Classifier: Programming Language :: Python :: 3.11
2929 Classifier: Operating System :: POSIX
3030 Classifier: Operating System :: MacOS :: MacOS X
3131 Classifier: Operating System :: Microsoft :: Windows
3434 Classifier: Topic :: Database
3535 Classifier: Topic :: Database :: Front-Ends
3636 Classifier: Framework :: AsyncIO
37 Requires-Python: >=3.6
37 Requires-Python: >=3.7
3838 Description-Content-Type: text/x-rst
3939 Provides-Extra: sa
4040 License-File: LICENSE
128128 Changelog
129129 ---------
130130
131 1.4.0 (2022-10-26)
132 ^^^^^^^^^^^^^^^^^^
133
134 * Add python 3.11 and drop python 3.6 support` #892 <https://github.com/aio-libs/aiopg/pull/892>`_
135
136
137 1.3.5 (2022-09-25)
138 ^^^^^^^^^^^^^^^^^^
139
140 * Fix pool size limit check for unlimited pools `#888 <https://github.com/aio-libs/aiopg/pull/888>`_
141
142
131143 1.3.4 (2022-06-30)
132144 ^^^^^^^^^^^^^^^^^^
133145
0 psycopg2-binary>=2.8.4
0 psycopg2-binary>=2.9.5
11 async_timeout<5.0,>=3.0
22
33 [sa]
22
33 from setuptools import setup, find_packages
44
5 install_requires = ["psycopg2-binary>=2.8.4", "async_timeout>=3.0,<5.0"]
5 install_requires = ["psycopg2-binary>=2.9.5", "async_timeout>=3.0,<5.0"]
66 extras_require = {"sa": ["sqlalchemy[postgresql_psycopg2binary]>=1.3,<1.5"]}
77
88
3333 "Intended Audience :: Developers",
3434 "Programming Language :: Python :: 3",
3535 "Programming Language :: Python :: 3 :: Only",
36 "Programming Language :: Python :: 3.6",
3736 "Programming Language :: Python :: 3.7",
3837 "Programming Language :: Python :: 3.8",
3938 "Programming Language :: Python :: 3.9",
4039 "Programming Language :: Python :: 3.10",
40 "Programming Language :: Python :: 3.11",
4141 "Operating System :: POSIX",
4242 "Operating System :: MacOS :: MacOS X",
4343 "Operating System :: Microsoft :: Windows",
5757 classifiers=classifiers,
5858 platforms=["macOS", "POSIX", "Windows"],
5959 author="Andrew Svetlov",
60 python_requires=">=3.6",
60 python_requires=">=3.7",
6161 project_urls={
6262 "Chat: Gitter": "https://gitter.im/aio-libs/Lobby",
6363 "CI: GA": "https://github.com/aio-libs/aiopg/actions?query=workflow%3ACI",