Skip to content

Commit d9f3204

Browse files
committed
py39+
1 parent b7aad15 commit d9f3204

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/main.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,30 @@ on:
88

99
jobs:
1010
main-windows:
11-
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
11+
uses: asottile/workflows/.github/workflows/tox.yml@v1.8.0
1212
with:
13-
env: '["py38"]'
13+
env: '["py39"]'
1414
os: windows-latest
1515
arch: '["x64", "x86"]'
1616
wheel-tags: true
1717
submodules: true
1818
main-macos:
19-
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
19+
uses: asottile/workflows/.github/workflows/tox.yml@v1.8.0
2020
with:
21-
env: '["py38"]'
21+
env: '["py39"]'
2222
os: macos-latest
2323
wheel-tags: true
2424
submodules: true
2525
main-macos-intel:
26-
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
26+
uses: asottile/workflows/.github/workflows/tox.yml@v1.8.0
2727
with:
28-
env: '["py38"]'
28+
env: '["py39"]'
2929
os: macos-13
3030
wheel-tags: true
3131
submodules: true
3232
main-linux:
33-
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
33+
uses: asottile/workflows/.github/workflows/tox.yml@v1.8.0
3434
with:
35-
env: '["py38", "py39", "py310", "py311"]'
35+
env: '["py39", "py310", "py311", "py312"]'
3636
os: ubuntu-latest
3737
submodules: true

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
rev: v3.13.0
1818
hooks:
1919
- id: reorder-python-imports
20-
args: [--py38-plus]
20+
args: [--py39-plus]
2121
- repo: https://github.com/asottile/add-trailing-comma
2222
rev: v3.1.0
2323
hooks:
@@ -26,7 +26,7 @@ repos:
2626
rev: v3.17.0
2727
hooks:
2828
- id: pyupgrade
29-
args: [--py38-plus]
29+
args: [--py39-plus]
3030
- repo: https://github.com/hhatto/autopep8
3131
rev: v2.3.1
3232
hooks:

bin/build-manylinux-wheels

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def check_call(*cmd):
2222
def main():
2323
os.makedirs('dist', exist_ok=True)
2424
with tempfile.TemporaryDirectory() as work:
25-
pip = '/opt/python/cp38-cp38/bin/pip'
25+
pip = '/opt/python/cp39-cp39/bin/pip'
2626
check_call(
2727
'docker', 'run', '-ti',
2828
# Use this so the files are not owned by root

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ py_modules =
3333
pysassc
3434
sass
3535
sasstests
36-
python_requires = >=3.8
36+
python_requires = >=3.9
3737

3838
[options.entry_points]
3939
console_scripts =

0 commit comments

Comments
 (0)