Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Python 3.8, test Python 3.13 #54

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
7 changes: 7 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
changelog:
exclude:
labels:
- ignore-for-release
authors:
- pre-commit-ci
- dependabot
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- uses: Swatinem/[email protected]

- name: Build wheels
run: pipx run cibuildwheel==2.14.1 --output-dir dist
run: pipx run cibuildwheel==2.20.0 --output-dir dist
env:
CIBW_BUILD: 'cp38-*'
CIBW_BUILD: 'cp39-*'
CIBW_SKIP: '*-win32 *-manylinux_i686'

- name: Check if there are changes
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:

- uses: Swatinem/[email protected]

- run: /opt/python/cp38-cp38/bin/python -m venv .venv
- run: /opt/python/cp39-cp39/bin/python -m venv .venv

- name: Update pip
run: .venv/bin/python -m pip install --upgrade pip
Expand Down Expand Up @@ -112,11 +112,11 @@ jobs:
- {name: 'Windows', image: 'windows-latest', wheel: 'win_amd64'}
- {name: 'Linux', image: 'ubuntu-latest', wheel: 'manylinux_2_28_x86_64'}
python:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- "3.13.0-beta - 3.13.0"

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# py-randomprime

Python 3.8+ bindings for [randomprime](https://github.com/randovania/randomprime)
Python 3.9+ bindings for [randomprime](https://github.com/randovania/randomprime)
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ classifiers =
License :: OSI Approved :: MIT License
Development Status :: 3 - Alpha
Intended Audience :: Developers
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Rust

[options]
Expand All @@ -22,7 +22,7 @@ install_requires =
include_package_data = True
zip_safe = False

python_requires = >=3.8
python_requires = >=3.9

[bdist_wheel]
py_limited_api = cp38
py_limited_api = cp39