Skip to content

Commit

Permalink
test ci (which will fail until cibw supports 3.13)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Jan 25, 2024
1 parent 7f66dbf commit 1e3542d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
26 changes: 26 additions & 0 deletions .github/workflows/build-ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches:
- main

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]

steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: "cp313-*"

- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ maintainer = AbstractUmbra <umbra@abstractumbra.dev>
maintainer_email = umbra@abstractumbra.dev
classifiers =
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13

[options]
python_requires = >=3.12
Expand Down

0 comments on commit 1e3542d

Please sign in to comment.