Skip to content

Commit 4622fa4

Browse files
author
Amaury Barral
committed
improve docs.py
1 parent 1734e83 commit 4622fa4

File tree

6 files changed

+329
-153
lines changed

6 files changed

+329
-153
lines changed

poetry.lock

+250-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "xrscipy"
3-
version = "0.0.1"
3+
version = "1.0.0"
44
authors = ["xarray Developers <[email protected]>"]
55
license = "Apache"
66
description = "Scipy integrated into xarray"
@@ -16,16 +16,21 @@ classifiers = [
1616
]
1717

1818
[tool.poetry.dependencies]
19-
python = ">=3.9"
19+
python = ">=3.9,<4"
2020
xarray = ">=0.10"
2121
scipy = ">=1.0"
22+
docstring-parser = "^0.15"
23+
urllib3 = ">2" # poetry bug !!
2224

2325
[tool.poetry.group.dev.dependencies]
2426
pytest-cov = "^4.0.0"
2527
flake8 = "^6.0.0"
2628
sphinx = "^6.0.0"
2729
sphinx-rtd-theme = "^1.2.0"
2830
pre-commit = "^3.3.1"
31+
isort = "5.12.0"
32+
black = "23.3.00"
33+
pycln = "2.1.3"
2934

3035
[build-system]
3136
requires = ["poetry-core"]

xrscipy/__init__.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
# flake8: noqa
2-
from __future__ import absolute_import, division, print_function
3-
4-
from . import docs, fft, fftpack, integrate, interpolate
5-
from .numpy_ import gradient
1+
"""init"""

0 commit comments

Comments
 (0)