Skip to content

Commit 3f638fe

Browse files
committed
Add a simple script for freezing package version constraints
Also created tools/ for various tools used when maintaining CMS.
1 parent 612a1b3 commit 3f638fe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tools/freeze-constraints.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -e
3+
4+
(
5+
echo "# Constraints generated by $0"
6+
pip freeze | grep -v '^cms'
7+
) >constraints.txt

0 commit comments

Comments
 (0)