Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "add python 3.11 tests (#722)" #723

Merged
merged 1 commit into from Feb 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11-dev'
# - '3.11.0-alpha.4'
db:
- [mysql, '5.7']
- [mysql, '8.0']
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Expand Up @@ -8,5 +8,5 @@ PyMySQL>=1.0.0,<=1.0.2
sphinx>=1.8.1, <4.4.1
sphinxcontrib-asyncio==0.3.0
sqlalchemy>1.2.12,<=1.3.16
uvloop==0.16.0; python_version < '3.11'
uvloop==0.16.0
pyroma==3.2
12 changes: 1 addition & 11 deletions tests/conftest.py
Expand Up @@ -3,21 +3,11 @@
import os
import re
import ssl
import sys

import aiomysql
import pymysql
import pytest


# version gate can be removed once uvloop supports python 3.11
# https://github.com/MagicStack/uvloop/issues/450
# https://github.com/MagicStack/uvloop/pull/459
PY_311 = sys.version_info >= (3, 11)
if PY_311:
uvloop = None
else:
import uvloop
import uvloop


@pytest.fixture
Expand Down