Skip to content

Commit

Permalink
ci: use python 3.11 to determine updated packages in PR description (#…
Browse files Browse the repository at this point in the history
…1160)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **Chores**
- Updated the script to compare package requirements against
`constraints_py3.11.txt` instead of `constraints_py3.9.txt`.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
  • Loading branch information
Czaki authored Jul 18, 2024
1 parent 98af5f4 commit 01a066c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_utils/check_updated_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
args = parser.parse_args()

out = subprocess.run( # nosec
["git", "diff", str(src_dir / "requirements" / "constraints_py3.9.txt")],
["git", "diff", str(src_dir / "requirements" / "constraints_py3.11.txt")],
capture_output=True,
check=True,
shell=False,
Expand Down

0 comments on commit 01a066c

Please sign in to comment.