Skip to content
Open
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
5 changes: 4 additions & 1 deletion .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
CIBW_ARCHS_LINUX: x86_64 aarch64
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_ARCHS_WINDOWS: AMD64 x86
CIBW_SKIP: pp* cp38-* cp314* *-win32 *_i686 *-musllinux_*
CIBW_SKIP: pp* cp38-* *-win32 *_i686 *-musllinux_*
CIBW_TEST_COMMAND: pytest -rfxEXs --durations=20 --disable-warnings --showlocals --pyargs gensim
CIBW_TEST_REQUIRES: pytest testfixtures mock
CIBW_TEST_SKIP: cp38* cp39* cp310* cp311* cp314* *_aarch64 *_arm64 *_universal2
Expand All @@ -66,18 +66,21 @@ jobs:
- {python: '3.11', os: macos-latest}
- {python: '3.12', os: macos-latest}
- {python: '3.13', os: macos-latest}
- {python: '3.14', os: macos-latest}

- {python: '3.9', os: ubuntu-24.04}
- {python: '3.10', os: ubuntu-24.04}
- {python: '3.11', os: ubuntu-24.04}
- {python: '3.12', os: ubuntu-24.04}
- {python: '3.13', os: ubuntu-24.04}
- {python: '3.14', os: ubuntu-24.04}

- {python: '3.9', os: windows-2025}
- {python: '3.10', os: windows-2025}
- {python: '3.11', os: windows-2025}
- {python: '3.12', os: windows-2025}
- {python: '3.13', os: windows-2025}
- {python: '3.14', os: windows-2025}

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,14 @@ jobs:
- {python: '3.11', os: ubuntu-24.04}
- {python: '3.12', os: ubuntu-24.04}
- {python: '3.13', os: ubuntu-24.04}
- {python: '3.14', os: ubuntu-24.04}

- {python: '3.9', os: windows-2025}
- {python: '3.10', os: windows-2025}
- {python: '3.11', os: windows-2025}
- {python: '3.12', os: windows-2025}
- {python: '3.13', os: windows-2025}
- {python: '3.14', os: windows-2025}

#
# Don't run this job unless the linters have succeeded.
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,8 @@ def run(self):
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
Expand Down
Loading