Skip to content

Commit 848bc46

Browse files
Jicqueldsauvage
andcommitted
Use python3 instead of python in the build/test scripts
The scripts do not support python2. Co-authored-by: David SAUVAGE - AdaLabs Ltd <[email protected]>
1 parent 26cf015 commit 848bc46

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/gnatcoll_core.gpr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
from __future__ import annotations
33
from typing import TYPE_CHECKING
44
import logging

gprproject/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
from .gprbuild import GPRTool
33
from subprocess import CalledProcessError
44
import argparse

minimal/gnatcoll_minimal.gpr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
from __future__ import annotations
33
from typing import TYPE_CHECKING
44
import sys

projects/gnatcoll_projects.gpr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
from __future__ import annotations
33
import logging
44
import sys

0 commit comments

Comments
 (0)