Skip to content

Commit

Permalink
fix: runtimes for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
therightstuff committed Sep 19, 2023
1 parent b90a872 commit 03dc1db
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
from __future__ import annotations

import os
import psutil
import platform
import re
import sys
import tempfile
import time
from typing import List, Union, Optional
from typing import List, Optional, Union
from xml.etree import ElementTree

import nox
import psutil
import requests
import yaml

Expand Down Expand Up @@ -69,7 +71,7 @@ def python_versions() -> Optional[List[str]]:
# In local, try all supported python versions.
# Anyway create a venv.
if os.getenv("CI", str(False)).lower() == "true":
return None
return [platform.python_version()]

with open(
os.path.dirname(__file__) + "/.github/workflows/version-testing.yml"
Expand Down

0 comments on commit 03dc1db

Please sign in to comment.