Skip to content

Commit

Permalink
bump versions (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis authored Sep 14, 2023
1 parent b10491b commit 2ee5a44
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew reinstall --build-from-source --formula ./.github/workflows/libomp.rb

- name: Build wheels
uses: pypa/cibuildwheel@v2.9.0
uses: pypa/cibuildwheel@v2.15.0

- name: Show files
run: ls -lh wheelhouse
Expand All @@ -44,14 +44,14 @@ jobs:
with:
submodules: true

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
name: Install Python

- name: Build sdist
run: |
python -m pip install build
python -m build -s
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,18 @@ jobs:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ${{matrix.platform}}
env:
PIP_ONLY_BINARY: numpy
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: setup Python ${{matrix.python-version}}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
allow-prereleases: true
python-version: ${{matrix.python-version}}
# - name: install libomp on macOS
# shell: bash
Expand Down
2 changes: 1 addition & 1 deletion extern/mp11
Submodule mp11 updated 66 files
+266 −39 .github/workflows/ci.yml
+1 −1 CMakeLists.txt
+1 −1 README.md
+9 −5 appveyor.yml
+52 −12 doc/mp11/algorithm.adoc
+15 −0 doc/mp11/changelog.adoc
+7 −0 doc/mp11/definitions.adoc
+10 −0 doc/mp11/integral.adoc
+154 −1 doc/mp11/list.adoc
+38 −17 include/boost/mp11/algorithm.hpp
+11 −0 include/boost/mp11/detail/config.hpp
+140 −4 include/boost/mp11/detail/mp_append.hpp
+119 −0 include/boost/mp11/detail/mp_defer.hpp
+105 −3 include/boost/mp11/detail/mp_fold.hpp
+13 −1 include/boost/mp11/detail/mp_front.hpp
+41 −0 include/boost/mp11/detail/mp_is_value_list.hpp
+27 −0 include/boost/mp11/detail/mp_list_v.hpp
+1 −1 include/boost/mp11/detail/mp_map_find.hpp
+4 −1 include/boost/mp11/detail/mp_plus.hpp
+18 −5 include/boost/mp11/detail/mp_rename.hpp
+25 −0 include/boost/mp11/detail/mp_value.hpp
+1 −0 include/boost/mp11/integral.hpp
+171 −3 include/boost/mp11/list.hpp
+2 −96 include/boost/mp11/utility.hpp
+1 −1 include/boost/mp11/version.hpp
+39 −2 test/Jamfile
+60 −0 test/mp_append_3.cpp
+49 −0 test/mp_apply_q_sf.cpp
+89 −0 test/mp_assign_2.cpp
+64 −0 test/mp_at_2.cpp
+57 −0 test/mp_back_2.cpp
+32 −0 test/mp_clear_2.cpp
+58 −0 test/mp_compose_sf.cpp
+10 −0 test/mp_drop.cpp
+98 −0 test/mp_drop_2.cpp
+40 −0 test/mp_empty_2.cpp
+159 −0 test/mp_erase_2.cpp
+40 −0 test/mp_fill_2.cpp
+32 −13 test/mp_fold.cpp
+50 −0 test/mp_fold_q_sf.cpp
+45 −0 test/mp_from_sequence_2.cpp
+40 −0 test/mp_front_2.cpp
+119 −0 test/mp_insert_2.cpp
+37 −0 test/mp_iota_2.cpp
+24 −0 test/mp_is_list.cpp
+58 −0 test/mp_is_value_list.cpp
+34 −0 test/mp_list_v.cpp
+54 −0 test/mp_pop_back_2.cpp
+37 −0 test/mp_pop_front_2.cpp
+46 −0 test/mp_push_back_2.cpp
+46 −0 test/mp_push_front_2.cpp
+51 −0 test/mp_rename_2.cpp
+56 −0 test/mp_rename_v.cpp
+125 −0 test/mp_repeat_2.cpp
+48 −0 test/mp_repeat_3.cpp
+60 −0 test/mp_replace_front_2.cpp
+43 −0 test/mp_replace_second_2.cpp
+41 −0 test/mp_replace_third_2.cpp
+32 −0 test/mp_second_2.cpp
+38 −0 test/mp_size_2.cpp
+88 −0 test/mp_take_2.cpp
+32 −0 test/mp_third_2.cpp
+99 −0 test/mp_transform_front_2.cpp
+61 −0 test/mp_transform_second_2.cpp
+61 −0 test/mp_transform_third_2.cpp
+40 −0 test/mp_value.cpp
2 changes: 1 addition & 1 deletion extern/pybind11
Submodule pybind11 updated 138 files

0 comments on commit 2ee5a44

Please sign in to comment.