Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies = [
"numpy>=2.0,<3.0",
"matplotlib>=3.10,<4.0",
"scipy>=1.17,<2.0",
"pandas>=2.3,<3.0",
"pandas>=2.3,<4.0",
"openpyxl>=3.1,<4.0",
"Pillow>=10.0,<13.0",
"python-dotenv>=1.0,<2.0",
Expand All @@ -38,11 +38,11 @@ dependencies = [
[project.optional-dependencies]
dev = [
"pytest>=7.0,<10.0",
"pytest-cov>=4.0,<5.0",
"pytest-cov>=4.0,<8.0",
"black>=23.0,<27.0",
"ruff>=0.1,<1.0",
"mypy>=1.0,<2.0",
"pre-commit>=3.0,<4.0",
"mypy>=1.0,<3.0",
"pre-commit>=3.0,<5.0",
]
docs = [
"sphinx>=9.0.0",
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# Testing
pytest>=7.0,<10.0
pytest-cov>=4.0,<5.0
pytest-cov>=4.0,<8.0

# Code formatting
black>=23.0,<27.0
Expand All @@ -15,7 +15,7 @@ black>=23.0,<27.0
ruff>=0.1,<1.0

# Type checking
mypy>=1.0,<2.0
mypy>=1.0,<3.0

# Pre-commit hooks
pre-commit>=3.0,<4.0
pre-commit>=3.0,<5.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ matplotlib>=3.10,<4.0
scipy>=1.17,<2.0

# Data manipulation
pandas>=2.3,<3.0
pandas>=2.3,<4.0

# Excel file support
openpyxl>=3.1,<4.0
Expand Down
6 changes: 3 additions & 3 deletions sphinx-docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Sphinx documentation requirements
sphinx>=9.0.0
sphinx-intl>=2.0.0
sphinx-intl>=2.3.2
sphinx-rtd-theme>=3.0.0
myst-parser>=5.0.0
sphinxcontrib-relativeinclude>=0.0.5
sphinx-autodoc-typehints>=3.0.0
linkify-it-py>=2.0.0
docutils>=0.17
docutils>=0.22.4

# Project dependencies needed for autodoc
numpy>=2.0,<3.0
matplotlib>=3.10,<4.0
scipy>=1.17,<2.0
pandas>=2.3,<3.0
pandas>=2.3,<4.0
openpyxl>=3.1,<4.0
python-dotenv>=1.0,<2.0
colorama>=0.4,<1.0
Expand Down