Skip to content

Commit 58083f1

Browse files
committed
Fix build matrix generation output
1 parent 33113b8 commit 58083f1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

noxfile.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
$ uv run noxfile.py -s dev -P 3.X
3535
"""
3636
from itertools import groupby
37+
import sys
3738

3839
import nox
3940
from packaging.requirements import Requirement
@@ -60,9 +61,9 @@ def lint(session):
6061

6162
def parametrize_test_versions():
6263
"""Parametrize the session with all supported Python & SQLAlchemy versions."""
63-
print("Requesting all SQLAlchemy versions from PyPI...")
64+
print("Requesting all SQLAlchemy versions from PyPI...", file=sys.stderr)
6465
response = requests.get("https://pypi.org/pypi/SQLAlchemy/json")
65-
print("Preparing test version candidates...")
66+
print("Preparing test version candidates...", file=sys.stderr)
6667
response.raise_for_status()
6768
data = response.json()
6869
all_major_and_minor_sqlalchemy_versions = [

0 commit comments

Comments
 (0)