Skip to content

Commit

Permalink
MAINT: Deal with the NTFS reserved naming issue
Browse files Browse the repository at this point in the history
Closes gh-3
  • Loading branch information
HaoZeke committed Jun 11, 2023
1 parent 7314588 commit 686051e
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion asv_runner/check.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

from .aux import update_sys_path
from ._aux import update_sys_path
from .discovery import disc_benchmarks


Expand Down
2 changes: 1 addition & 1 deletion asv_runner/discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pkgutil
import traceback

from .aux import update_sys_path
from ._aux import update_sys_path
from .benchmarks import benchmark_types


Expand Down
2 changes: 1 addition & 1 deletion asv_runner/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import math
import pickle

from .aux import set_cpu_affinity_from_params
from ._aux import set_cpu_affinity_from_params
from .discovery import get_benchmark_from_name


Expand Down
2 changes: 1 addition & 1 deletion asv_runner/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import time
import timeit

from .aux import posix_redirect_output, update_sys_path
from ._aux import posix_redirect_output, update_sys_path
from .discovery import disc_benchmarks
from .run import _run

Expand Down
2 changes: 1 addition & 1 deletion asv_runner/setup_cache.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
import pickle

from .aux import set_cpu_affinity_from_params
from ._aux import set_cpu_affinity_from_params
from .discovery import get_benchmark_from_name


Expand Down

0 comments on commit 686051e

Please sign in to comment.