We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a27a63 commit c621e78Copy full SHA for c621e78
scripts/setup/venv.sh
@@ -1,10 +1,6 @@
1
#!/bin/bash
2
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
+if command -v python3 &> /dev/null; then
8
PYTHON=$(command -v python3)
9
elif command -v python &> /dev/null; then
10
PYTHON=$(command -v python)
0 commit comments