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
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: recursive

- name: Set up Python 3.13
uses: actions/setup-python@v5
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: 3.13
python-version: 3.14

- name: Install pip, build and pytest
run: |
Expand Down
56 changes: 28 additions & 28 deletions .github/workflows/deploy-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: workflow_dispatch

env:
CIBW_BUILD: cp3*
CIBW_SKIP: cp36-* cp37-* cp38-*
CIBW_SKIP: cp38-*
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: pytest {project}/test/PyGLM_test.py -v

Expand All @@ -20,17 +20,17 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -51,17 +51,17 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down Expand Up @@ -90,21 +90,21 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' && matrix.arch != 'i686' }}
uses: docker/setup-qemu-action@v3

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down Expand Up @@ -133,17 +133,17 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -168,21 +168,21 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' && matrix.arch != 'i686' }}
uses: docker/setup-qemu-action@v3

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -205,17 +205,17 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -229,14 +229,14 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install build
run: pip install build
Expand Down
56 changes: 28 additions & 28 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
CIBW_BUILD: cp3*
CIBW_SKIP: cp36-* cp37-* cp38-*
CIBW_SKIP: cp38-*
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: pytest {project}/test/PyGLM_test.py -v

Expand All @@ -23,17 +23,17 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -54,17 +54,17 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down Expand Up @@ -93,21 +93,21 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' && matrix.arch != 'i686' }}
uses: docker/setup-qemu-action@v3

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down Expand Up @@ -136,17 +136,17 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -171,21 +171,21 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- name: Set up QEMU
if: ${{ matrix.arch != 'x86_64' && matrix.arch != 'i686' }}
uses: docker/setup-qemu-action@v3

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -208,17 +208,17 @@ jobs:
CIBW_ARCHS: ${{matrix.arch}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0
run: python -m pip install cibuildwheel==3.2.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -232,14 +232,14 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: '3.13'
python-version: '3.14'

- name: Install build
run: pip install build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install pip, build and pytest
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.8.2
2.8.3
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Operating System :: MacOS
Expand Down