Skip to content

Commit

Permalink
Post-merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Sep 21, 2023
1 parent 223308e commit 433a4c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
dist/*.whl
# This job can be run locally with the `format_all.bat` script
formatters:
checkers:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
Expand All @@ -116,7 +116,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
# mypy 1.5 dropped support for python 3.7
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand All @@ -135,6 +136,6 @@ jobs:
- uses: actions/checkout@v3
- uses: jakebailey/pyright-action@v1
with:
version: '1.1.311'
version: 'latest'
python-version: ${{ matrix.python-version }}

3 changes: 1 addition & 2 deletions isapi/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@
_DEFAULT_ENABLE_DIR_BROWSING = False
_DEFAULT_ENABLE_DEFAULT_DOC = False

_extensions = [ext for ext, _, _ in importlib.machinery.EXTENSION_SUFFIXES]
is_debug_build = "_d.pyd" in _extensions
is_debug_build = "_d.pyd" in importlib.machinery.EXTENSION_SUFFIXES

this_dir = os.path.abspath(os.path.dirname(__file__))

Expand Down

0 comments on commit 433a4c2

Please sign in to comment.