Skip to content

Commit c621e78

Browse files
committed
No more pinning to Python 3.11
1 parent 3a27a63 commit c621e78

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

scripts/setup/venv.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
#!/bin/bash
22

3-
# We check explicitly for Python 3.11 since it's the last version
4-
# supporting numpy.distutils, which is required by gacode for OMFIT.
5-
if command -v python3.11 &> /dev/null; then
6-
PYTHON=$(command -v python3.11)
7-
elif command -v python3 &> /dev/null; then
3+
if command -v python3 &> /dev/null; then
84
PYTHON=$(command -v python3)
95
elif command -v python &> /dev/null; then
106
PYTHON=$(command -v python)

0 commit comments

Comments
 (0)