Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 5ef7c66

Browse files
authored
Merge pull request #321 from sass/py39
test python3.9
2 parents 1106969 + 7e9ff8b commit 5ef7c66

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v2.5.0
3+
rev: v3.3.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
77
- id: check-yaml
88
- id: debug-statements
99
- repo: https://gitlab.com/pycqa/flake8
10-
rev: 3.8.0
10+
rev: 3.8.4
1111
hooks:
1212
- id: flake8
1313
exclude: ^docs/conf.py
1414
- repo: https://github.com/asottile/pyupgrade
15-
rev: v2.4.1
15+
rev: v2.7.3
1616
hooks:
1717
- id: pyupgrade
1818
- repo: https://github.com/asottile/add-trailing-comma

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resources:
1313
type: github
1414
endpoint: github
1515
name: asottile/azure-pipeline-templates
16-
ref: refs/tags/v2.0.0
16+
ref: refs/tags/v2.1.0
1717

1818
jobs:
1919
- template: job--pre-commit.yml@asottile
@@ -33,11 +33,11 @@ jobs:
3333
- script: rm -rf libsass/test
3434
- template: job--python-tox.yml@asottile
3535
parameters:
36-
toxenvs: [py36, py37, py38]
36+
toxenvs: [py36, py37, py38, py39]
3737
os: windows
3838
architectures: [x64, x86]
3939
wheel_tags: true
4040
- template: job--python-tox.yml@asottile
4141
parameters:
42-
toxenvs: [pypy, pypy3, py27, py36, py37, py38]
42+
toxenvs: [pypy, pypy3, py27, py36, py37, py38, py39]
4343
os: linux

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,10 @@ def finalize_options(self):
285285
'Programming Language :: C++',
286286
'Programming Language :: Python :: 2.7',
287287
'Programming Language :: Python :: 3',
288-
'Programming Language :: Python :: 3.5',
289288
'Programming Language :: Python :: 3.6',
290289
'Programming Language :: Python :: 3.7',
290+
'Programming Language :: Python :: 3.8',
291+
'Programming Language :: Python :: 3.9',
291292
'Programming Language :: Python :: Implementation :: CPython',
292293
'Programming Language :: Python :: Implementation :: PyPy',
293294
'Programming Language :: Python :: Implementation :: Stackless',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pypy,pypy3,py27,py36,py37,py38,pre-commit
2+
envlist = pypy,pypy3,py27,py36,py37,py38,py39,pre-commit
33

44
[testenv]
55
usedevelop = true

0 commit comments

Comments
 (0)