File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 3434 $ uv run noxfile.py -s dev -P 3.X
3535"""
3636from itertools import groupby
37+ import sys
3738
3839import nox
3940from packaging .requirements import Requirement
@@ -60,9 +61,9 @@ def lint(session):
6061
6162def 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 = [
You can’t perform that action at this time.
0 commit comments