Skip to content

Commit

Permalink
Replace distutils module (#230)
Browse files Browse the repository at this point in the history
* Replace distutils module

* Add Python 3.12 build

* Use correct Python version in mamba build env, update xsimd constrain
  • Loading branch information
sameeul authored Jul 9, 2024
1 parent c77f42e commit f118d95
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- name: Checkout
Expand All @@ -32,6 +32,8 @@ jobs:
uses: mamba-org/setup-micromamba@v1
with:
environment-file: .github/workflows/environment.yaml
create-args: >-
python=${{ matrix.python-version }}
- name: Build unix
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- zlib
- xtensor >=0.24,<0.25
- xtensor-python >=0.26,<0.27
- xsimd >=8,<9
- xsimd >=10,<11
- blosc
- imageio
- nlohmann_json
Expand Down
9 changes: 2 additions & 7 deletions src/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,10 @@ add_subdirectory(lib)

# Find the python install dir
IF(NOT DEFINED PYTHON_MODULE_INSTALL_DIR OR PYTHON_MODULE_INSTALL_DIR MATCHES "^$")

execute_process(
COMMAND "${PYTHON_EXECUTABLE}" -c
"from __future__ import print_function; from distutils import sysconfig as sc; print(sc.get_python_lib(prefix='', plat_specific=True))"
OUTPUT_VARIABLE PYTHON_SITE
OUTPUT_STRIP_TRAILING_WHITESPACE)

execute_process(
COMMAND "${PYTHON_EXECUTABLE}" -c "from __future__ import print_function; from distutils.sysconfig import get_python_lib; print(get_python_lib())"
"from __future__ import print_function; import sysconfig; print(sysconfig.get_path('platlib'))"
OUTPUT_VARIABLE PYTHON_SITE
OUTPUT_STRIP_TRAILING_WHITESPACE)

Expand Down

0 comments on commit f118d95

Please sign in to comment.