https://github.com/bashtage/arch
Raw File
Tip revision: 72acfb6548dddb31af10584dff3028d803bb2e68 authored by Kevin Sheppard on 05 February 2021, 12:27:18 UTC
Merge pull request #446 from bashtage/final-fix
Tip revision: 72acfb6
pyproject.toml
[build-system]
requires = [
  "setuptools",
  "wheel",
  "numpy==1.16.6; python_version<='3.7'",
  "numpy==1.17.5; python_version=='3.8'",
  "numpy==1.19.5; python_version=='3.9'",
  "numpy; python_version>='3.10'",
  "Cython>=0.29.14"]

[tool.black]
target-version = ['py37', 'py38']
exclude = '''
(
    \.egg
  | \.git
  | \.mypy_cache
  | \.oytest_cache
  | _build
  | buck-out
  | build
  | dist
)
'''
back to top