Skip to content

Commit 0500222

Browse files
committed
versions
1 parent 19f8f67 commit 0500222

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools>=42",
3+
"setuptools>=58",
44
"wheel"
55
]
66
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[metadata]
22
version = attr: diyepw.__version__
3-
description-file = README.md
3+
description_file = README.md

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ def readme():
2626
license='BSD 2-Clause',
2727
python_requires='>=3.9',
2828
install_requires=[
29-
'click~=8.0.1',
30-
'numpy~=2.0.0',
31-
'pandas~=2.0.0',
32-
'pvlib~=0.13.0',
33-
'xarray>=2024.0.0',
34-
'importlib_resources~=6.0.0',
29+
'click>=8.0.1,<9.0.0',
30+
'numpy>=2.0.0,<3.0.0',
31+
'pandas>=2.2.0,<3.0.0',
32+
'pvlib>=0.13.0,<1.0.0',
33+
'xarray>=2024.0.0,<2026.0.0',
34+
'importlib_resources>=6.0.0,<7.0.0',
3535
],
3636
extras_require={
3737
'dev': [
3838
'build>=0.5.1',
3939
'pytest>=6.2.4',
40-
'twine~=3.4.1',
40+
'twine>=3.4.1',
4141
'recommonmark~=0.7.1',
42-
'setuptools~=57.0.0',
42+
'setuptools>=58.0.0',
4343
'sphinx~=3.5.1',
4444
'sphinx-rtd-theme~=0.5.1',
4545
]

0 commit comments

Comments
 (0)