Skip to content

Commit

Permalink
Bump min Python to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed May 7, 2024
1 parent 65c937f commit 210ca57
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: "3.10"
- name: Install
run: |
pip install -U pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
path: binaries
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"
- run: python -m venv $HOME/venv
name: Create venv
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
path: binaries
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.10"
- run: python -m venv $HOME/venv
name: Create venv
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ repos:
rev: v3.15.2
hooks:
- id: pyupgrade
args: [--py38-plus]
args: [--py310-plus]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.3
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ submodules:
build:
os: ubuntu-22.04
tools:
python: "3.8"
python: "3.10"
jobs:
pre_install:
- pip install -U pip
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[tool.black]
line-length = 120
target-version = ['py38']
target-version = ['py310']
force-exclude = '''
/(
vex
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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
Expand All @@ -24,7 +22,7 @@ packages = find:
install_requires =
bitstring
cffi>=1.0.3;implementation_name == 'cpython'
python_requires = >=3.8
python_requires = >=3.10
include_package_data = True

[options.extras_require]
Expand Down

0 comments on commit 210ca57

Please sign in to comment.