Skip to content

Commit

Permalink
Support async code for Python 3.1*
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Oct 18, 2023
1 parent 9608064 commit fd95dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -13,7 +13,7 @@ LINT_TEST_DIR := false
export PATH := $(abspath venv)/bin:${PATH}

# Whether to include "*_async.py" files
INCLUDE_ASYNC = $(shell python --version | grep -q "Python 3.[789]" && echo "true" || echo "false")
INCLUDE_ASYNC = $(shell python --version | grep -q "Python 3.[7891]" && echo "true" || echo "false")

# Async vs. Sync files
PACKAGE_ASYNC_FILES = $(shell ls -m $(PACKAGE_DIR)/*_async.py 2>/dev/null)
Expand Down

0 comments on commit fd95dd5

Please sign in to comment.