Skip to content

Commit

Permalink
Merge pull request #53 from kyamagu/fix-windows-build-md-flag
Browse files Browse the repository at this point in the history
Fix windows build /MD flag
  • Loading branch information
kyamagu authored May 29, 2020
2 parents 7b952b0 + b56d7dc commit ee24348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
strategy:
matrix:
arch: [ x64 ]
python-version: [3.7]
python-version: [3.5, 3.7]
steps:
- uses: actions/checkout@v2
with:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
'/wd4267', # Conversion from 'size_t' to 'int', possible loss of data.
'/wd4800', # Forcing value to bool 'true' or 'false'.
'/wd4180', # Qualifier applied to function type has no meaning.
'/MD', # Bugfix: https://bugs.python.org/issue38597
]
EXTRA_LINK_ARGS = [
'/OPT:ICF',
Expand Down

0 comments on commit ee24348

Please sign in to comment.