Skip to content
Merged

py39+ #473

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
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@ on:

jobs:
main-windows:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
uses: asottile/workflows/.github/workflows/tox.yml@v1.8.0
with:
env: '["py38"]'
env: '["py39"]'
os: windows-latest
arch: '["x64", "x86"]'
wheel-tags: true
submodules: true
main-macos:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
uses: asottile/workflows/.github/workflows/tox.yml@v1.8.0
with:
env: '["py38"]'
env: '["py39"]'
os: macos-latest
wheel-tags: true
submodules: true
main-macos-intel:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
uses: asottile/workflows/.github/workflows/tox.yml@v1.8.0
with:
env: '["py38"]'
env: '["py39"]'
os: macos-13
wheel-tags: true
submodules: true
main-linux:
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.1
uses: asottile/workflows/.github/workflows/tox.yml@v1.8.0
with:
env: '["py38", "py39", "py310", "py311"]'
env: '["py39", "py310", "py311"]'
os: ubuntu-latest
submodules: true
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
rev: v3.13.0
hooks:
- id: reorder-python-imports
args: [--py38-plus]
args: [--py39-plus]
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion bin/build-manylinux-wheels
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def check_call(*cmd):
def main():
os.makedirs('dist', exist_ok=True)
with tempfile.TemporaryDirectory() as work:
pip = '/opt/python/cp38-cp38/bin/pip'
pip = '/opt/python/cp39-cp39/bin/pip'
check_call(
'docker', 'run', '-ti',
# Use this so the files are not owned by root
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ py_modules =
pysassc
sass
sasstests
python_requires = >=3.8
python_requires = >=3.9

[options.entry_points]
console_scripts =
Expand Down
Loading