Skip to content

Commit

Permalink
Updated cibuildwheel & actions/checkout versions
Browse files Browse the repository at this point in the history
Signed-off-by: Bhavye Mathur <[email protected]>
  • Loading branch information
BhavyeMathur committed Feb 14, 2024
1 parent 0f280c7 commit 21ebda9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-goopylib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
os: [ windows-latest, macos-latest ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4

- name: Configure submodules
Expand All @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Configure submodules
run: git submodule update --init --recursive
Expand All @@ -95,18 +95,18 @@ jobs:
fail-fast: false
matrix:
os: [ windows-latest, macos-latest ]
python: [ cp38-*, cp39-*, cp310-*, cp311-* ]
python: [ "cp38-*", "cp39-*", "cp310-*", "cp311-*" ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Configure submodules
run: git submodule update --init --recursive

- name: Build Python wheels
env:
CIBW_BUILD: ${{ matrix.build }}
uses: pypa/cibuildwheel@v2.11.4
uses: pypa/cibuildwheel@v2.16.5

- uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (APPLE)
set(CMAKE_CXX_FLAGS "-Wall -Wno-unknown-pragmas")
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
set(CMAKE_CXX_FLAGS_DEBUG /Od)
set(CMAKE_CXX_FLAGS_RELEASE /O3)
set(CMAKE_CXX_FLAGS_RELEASE /O2)
endif ()

set(CMAKE_CXX_STANDARD 17)
Expand Down

0 comments on commit 21ebda9

Please sign in to comment.