Skip to content

Commit a58d6ce

Browse files
committed
Fix reqs
1 parent e51c008 commit a58d6ce

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159

160160
strategy:
161161
matrix:
162-
python_version: [ "3.10" ]
162+
python_version: [ "3.12" ]
163163

164164
steps:
165165
- uses: actions/checkout@v6

scripts/time_imports.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ find . -name "*.pyc" -print0 | xargs -0 rm
2626

2727
# Example line:
2828
# import time: 1112 | 70127 | libcloud
29-
LIBCLOUD_IMPORT_TIMINGS=$(python3.9 -X importtime -c "import libcloud" 2>&1)
29+
LIBCLOUD_IMPORT_TIMINGS=$(python3.10 -X importtime -c "import libcloud" 2>&1)
3030
LIBCLOUD_IMPORT_TIME_CUMULATIVE_US=$(echo -e "${LIBCLOUD_IMPORT_TIMINGS}" | tail -1 | grep "| libcloud" | awk '{print $5}')
3131

3232
echo "Import timings for \"libcloud\" module"
@@ -40,7 +40,7 @@ fi
4040
# Clean up any cached files to ensure consistent and clean environment
4141
find . -name "*.pyc" -print0 | xargs -0 rm
4242

43-
EC2_DRIVER_IMPORT_TIMINGS=$(python3.9 -X importtime -c "import libcloud.compute.drivers.ec2" 2>&1)
43+
EC2_DRIVER_IMPORT_TIMINGS=$(python3.10 -X importtime -c "import libcloud.compute.drivers.ec2" 2>&1)
4444
EC2_DRIVER_IMPORT_TIME_CUMULATIVE_US=$(echo -e "$EC2_DRIVER_IMPORT_TIMINGS}" | tail -1 | grep "| libcloud.compute.drivers.ec2" | awk '{print $5}')
4545

4646
echo ""

0 commit comments

Comments
 (0)