Skip to content

Commit d5c68da

Browse files
authored
Merge pull request #58 from 56kyle/feature/redesign_type_expansion
Feature/redesign type expansion
2 parents eb9c062 + d162a4b commit d5c68da

File tree

17 files changed

+1824
-526
lines changed

17 files changed

+1824
-526
lines changed

.flake8

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[flake8]
22
select = B,B9,C,D,DAR,E,F,N,RST,S,W
3-
ignore = E203,E501,RST201,RST203,RST301,W503
3+
ignore = E203,E501,RST201,RST203,RST301,W503,B905
44
max-line-length = 80
55
max-complexity = 10
66
docstring-convention = google
7-
per-file-ignores = tests/*:S101
7+
per-file-ignores = tests/*:S101,D100,D101,D102,D103,D104
88
rst-roles = class,const,func,meth,mod,ref
99
rst-directives = deprecated

.github/workflows/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ pip==23.1.2
22
nox==2022.1.7
33
nox-poetry==1.0.2
44
poetry==1.4.2
5-
virtualenv==20.23.0
5+
virtualenv==20.14.1

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ jobs:
1717
- { python: "3.10", os: "ubuntu-latest", session: "mypy" }
1818
- { python: "3.9", os: "ubuntu-latest", session: "mypy" }
1919
- { python: "3.8", os: "ubuntu-latest", session: "mypy" }
20-
- { python: "3.7", os: "ubuntu-latest", session: "mypy" }
2120
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
2221
- { python: "3.9", os: "ubuntu-latest", session: "tests" }
2322
- { python: "3.8", os: "ubuntu-latest", session: "tests" }
24-
- { python: "3.7", os: "ubuntu-latest", session: "tests" }
2523
- { python: "3.10", os: "windows-latest", session: "tests" }
2624
- { python: "3.10", os: "macos-latest", session: "tests" }
2725
- { python: "3.10", os: "ubuntu-latest", session: "typeguard" }

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
package = "pytest_static"
26-
python_versions = ["3.10", "3.9", "3.8", "3.7"]
26+
python_versions = ["3.10", "3.9", "3.8"]
2727
nox.needs_version = ">= 2021.6.6"
2828
nox.options.sessions = (
2929
"pre-commit",

0 commit comments

Comments
 (0)