We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db4f835 commit 33113b8Copy full SHA for 33113b8
noxfile.py
@@ -60,7 +60,9 @@ def lint(session):
60
61
def parametrize_test_versions():
62
"""Parametrize the session with all supported Python & SQLAlchemy versions."""
63
+ print("Requesting all SQLAlchemy versions from PyPI...")
64
response = requests.get("https://pypi.org/pypi/SQLAlchemy/json")
65
+ print("Preparing test version candidates...")
66
response.raise_for_status()
67
data = response.json()
68
all_major_and_minor_sqlalchemy_versions = [
0 commit comments