Skip to content

[mypyc] Introduce ClassBuilder and add support for attrs classes #11328

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

Merged
merged 12 commits into from
Nov 25, 2021
Prev Previous commit
Next Next commit
fix tests on python 3.6
  • Loading branch information
chadrik committed Oct 13, 2021
commit b254fe838177a320ee66a566a2b1c32aff34843c
8 changes: 5 additions & 3 deletions mypyc/test/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,13 @@
'run-bench.test',
'run-mypy-sim.test',
'run-dunders.test',
'run-singledispatch.test',
'run-attrs.test',
'run-singledispatch.test'
]
if sys.version_info >= (3, 7):
files.append('run-python37.test')
files.extend([
'run-python37.test',
'run-attrs.test',
])
if sys.version_info >= (3, 8):
files.append('run-python38.test')

Expand Down