Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/make_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
matrix:
# for now windows pip install builds seem to fail for some reason
os: [ubuntu-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions devtools/conda_envs/distopia_macos-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ dependencies:
- cmake
- make
- pip
- python >=3.9
- python >=3.11
- cython
- numpy
- ninja
- pytest
- scikit-build
- clang <=15.0
- clangxx <=15.0
- clang
- clangxx
- libxcrypt
- versioningit
- versioningit
4 changes: 2 additions & 2 deletions devtools/conda_envs/distopia_ubuntu-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ dependencies:
- cmake
- make
- pip
- python >=3.9
- python >=3.11
- cython
- numpy
- ninja
- pytest
- scikit-build
- compilers
- libxcrypt
- versioningit
- versioningit
2 changes: 1 addition & 1 deletion devtools/conda_envs/distopia_windows-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies:
- cmake
- make
- pip
- python >=3.9
- python >=3.11
- cython
- numpy
- ninja
Expand Down
2 changes: 1 addition & 1 deletion libdistopia/highway
Submodule highway updated 205 files
2 changes: 2 additions & 0 deletions libdistopia/include/distopia.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

// set EMU 128 to broken so that HWY_SCALAR is the baseline dispatch target
#define HWY_BROKEN_EMU128 1
#define HWY_DISABLE_TARGETS (HWY_SVE | HWY_SVE2)

// compile all attainable targets
#define HWY_COMPILE_ALL_ATTAINABLE

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies = [
"cython",
"numpy",
]
requires-python = ">=3.9"
requires-python = ">=3.11"


[tool.setuptools]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
name="distopia",
packages=['distopia'],
cmake_args=['-DBUILD_PYTHON=ON'],
python_requires=">=3.9",
python_requires=">=3.11",
install_requires=[
"numpy>=1.20.0"
"numpy>=1.26.0"
],
)