Skip to content

Commit d2308e8

Browse files
committed
asyncpg v0.17.0
1 parent 3565ef8 commit d2308e8

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
lines changed

.ci/appveyor.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ environment:
1616
- PYTHON: "C:\\Python35-x64\\python.exe"
1717
- PYTHON: "C:\\Python36\\python.exe"
1818
- PYTHON: "C:\\Python36-x64\\python.exe"
19+
- PYTHON: "C:\\Python37\\python.exe"
20+
- PYTHON: "C:\\Python37-x64\\python.exe"
1921

2022
branches:
2123
# Avoid building PR branches.
@@ -31,7 +33,7 @@ build_script:
3133
- "%PYTHON% setup.py build_ext --inplace --cython-always"
3234

3335
test_script:
34-
- "%PYTHON% setup.py test"
36+
- "%PYTHON% setup.py --verbose test"
3537

3638
after_test:
3739
- "%PYTHON% setup.py bdist_wheel"
@@ -40,9 +42,9 @@ artifacts:
4042
- path: dist\*
4143

4244
deploy_script:
43-
- "%PYTHON% -m pip install --upgrade -r .ci/requirements-publish.txt"
4445
- ps: |
4546
if ($env:appveyor_repo_branch -eq 'releases') {
47+
& "$env:PYTHON" -m pip install -U -r ".ci/requirements-publish.txt"
4648
$PACKAGE_VERSION = & "$env:PYTHON" ".ci/package-version.py"
4749
$PYPI_VERSION = & "$env:PYTHON" ".ci/pypi-check.py" "asyncpg"
4850

.travis.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: generic
33
env:
44
global:
55
- PYMODULE=asyncpg
6-
- RELEASE_PYTHON_VERSIONS="3.5 3.6"
6+
- RELEASE_PYTHON_VERSIONS="3.5 3.6 3.7"
77

88
- S3_UPLOAD_USERNAME=oss-ci-bot
99
- S3_UPLOAD_BUCKET=magicstack-oss-releases
@@ -105,10 +105,10 @@ matrix:
105105
apt: {packages: [postgresql-10]}
106106

107107
- os: linux
108-
dist: trusty
109-
sudo: false
108+
dist: xenial
109+
sudo: true
110110
language: python
111-
python: "3.7-dev"
111+
python: "3.7"
112112
env: BUILD=tests PGVERSION=10
113113
addons:
114114
apt: {packages: [postgresql-10]}
@@ -134,9 +134,6 @@ matrix:
134134
osx_image: xcode8.3
135135
env: BUILD=tests,wheels PYTHON_VERSION=3.6.5 PGVERSION=10
136136

137-
allow_failures:
138-
- python: "3.7-dev"
139-
140137
cache:
141138
pip
142139

asyncpg/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
# snapshots will automatically include the git revision
3232
# in __version__, for example: '0.16.0.dev0+ge06ad03'
3333

34-
__version__ = '0.17.0.dev0'
34+
__version__ = '0.17.0'

setup.py

+12-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from setuptools.command import sdist as setuptools_sdist
2828

2929

30-
CYTHON_DEPENDENCY = 'Cython==0.28.3'
30+
CYTHON_DEPENDENCY = 'Cython==0.28.4'
3131

3232
# Minimal dependencies required to test asyncpg.
3333
TEST_DEPENDENCIES = [
@@ -246,18 +246,23 @@ def finalize_options(self):
246246
description='An asyncio PosgtreSQL driver',
247247
long_description=readme,
248248
classifiers=[
249-
'License :: OSI Approved :: Apache Software License',
249+
'Development Status :: 5 - Production/Stable',
250250
'Framework :: AsyncIO',
251251
'Intended Audience :: Developers',
252-
'Programming Language :: Python :: 3 :: Only',
253-
'Programming Language :: Python :: 3.5',
254-
'Programming Language :: Python :: 3.6',
252+
'License :: OSI Approved :: Apache Software License',
255253
'Operating System :: POSIX',
256254
'Operating System :: MacOS :: MacOS X',
257255
'Operating System :: Microsoft :: Windows',
258-
'Development Status :: 5 - Production/Stable',
256+
'Programming Language :: Python :: 3 :: Only',
257+
'Programming Language :: Python :: 3.5',
258+
'Programming Language :: Python :: 3.6',
259+
'Programming Language :: Python :: 3.7',
260+
'Programming Language :: Python :: Implementation :: CPython',
261+
'Topic :: Database :: Front-Ends',
259262
],
260-
platforms=['POSIX'],
263+
platforms=['macOS', 'POSIX', 'Windows'],
264+
python_requires='>=3.5.0',
265+
zip_safe=False,
261266
author='MagicStack Inc',
262267
author_email='[email protected]',
263268
url='https://github.com/MagicStack/asyncpg',

0 commit comments

Comments
 (0)