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

py39+ #209

Merged
merged 1 commit into from
Oct 11, 2024
Merged

py39+ #209

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
py39+
  • Loading branch information
asottile committed Oct 11, 2024
commit 52f3ae80e60cd91f25b382cb4018f953f364128a
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -8,12 +8,12 @@ on:

jobs:
main-windows:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.0
uses: asottile/workflows/.github/workflows/tox.yml@v1.7.0
with:
env: '["py38"]'
env: '["py39"]'
os: windows-latest
main-linux:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.0
uses: asottile/workflows/.github/workflows/tox.yml@v1.7.0
with:
env: '["pypy3", "py38", "py39", "py310", "py311", "py312"]'
env: '["pypy3", "py39", "py310", "py311", "py312", "py313"]'
os: ubuntu-latest
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ repos:
rev: v3.13.0
hooks:
- id: reorder-python-imports
args: [--py38-plus, --add-import, 'from __future__ import annotations']
args: [--py39-plus, --add-import, 'from __future__ import annotations']
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
@@ -26,7 +26,7 @@ repos:
rev: v3.17.0
hooks:
- id: pyupgrade
args: [--py38-plus]
args: [--py39-plus]
- repo: https://github.com/hhatto/autopep8
rev: v2.3.1
hooks:
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ classifiers =
py_modules = setuptools_golang
install_requires =
setuptools
python_requires = >=3.8
python_requires = >=3.9

[options.entry_points]
console_scripts =
4 changes: 2 additions & 2 deletions setuptools_golang.py
Original file line number Diff line number Diff line change
@@ -11,11 +11,11 @@
import subprocess
import sys
import tempfile
from collections.abc import Generator
from collections.abc import Sequence
from types import TracebackType
from typing import Any
from typing import Callable
from typing import Generator
from typing import Sequence

from distutils.ccompiler import CCompiler
from distutils.dist import Distribution
Loading