-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
2,218 additions
and
1,766 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,6 @@ jobs: | |
group: ${{ github.ref }}-pre-commit | ||
cancel-in-progress: ${{github.event_name == 'pull_request'}} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
- uses: pre-commit/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/ | ||
|
||
[build-system] | ||
requires = ["poetry>=1.0"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "staircase" | ||
version = "2.5.2" | ||
version = "2.6.0" | ||
description = "A data analysis package based on modelling and manipulation of mathematical step functions. Strongly aligned with pandas." | ||
readme = "README.md" | ||
authors = ["Riley Clement <[email protected]>"] | ||
|
@@ -30,11 +30,11 @@ keywords=[ | |
classifiers=[ | ||
'Operating System :: OS Independent', | ||
'Intended Audience :: Science/Research', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Topic :: Scientific/Engineering', | ||
] | ||
|
||
|
@@ -43,28 +43,28 @@ classifiers=[ | |
|
||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
python = "^3.8" | ||
pytz = "*" | ||
typing-extensions = "^4.4.0" | ||
|
||
[[tool.poetry.dependencies.pandas]] | ||
python = ">=3.7,<3.10" | ||
python = ">=3.8,<3.10" | ||
version = "^1" | ||
|
||
[[tool.poetry.dependencies.pandas]] | ||
python = "^3.10" | ||
version = ">=1.3.4,<3" | ||
|
||
[[tool.poetry.dependencies.numpy]] | ||
python = ">=3.7,<3.10" | ||
version = "^1.15" | ||
python = ">=3.8,<3.10" | ||
version = "^1.16" | ||
|
||
[[tool.poetry.dependencies.numpy]] | ||
python = "^3.10" | ||
version = "^1.21.2" | ||
|
||
[[tool.poetry.dependencies.matplotlib]] | ||
python = ">=3.7,<3.11" | ||
python = ">=3.8,<3.11" | ||
version = ">=2" | ||
|
||
[[tool.poetry.dependencies.matplotlib]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
ignore = E203, E231, E402, E501, F401, W503 | ||
ignore = E203, E231, E402, E501, F401, W503, W604 | ||
exclude = docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,33 @@ | ||
[tox] | ||
isolated_build=true | ||
envlist = py{36,37,38,39,310,311}-numpy{114,115,116,117,118,119,120,121}-pandas{024,025,10,11,12,13} | ||
envlist = | ||
py{38}-pandas11 | ||
py{38,39}-pandas12 | ||
py{38,39}-pandas13 | ||
py{38,39,310}-pandas14 | ||
py{38,39,310}-pandas15 | ||
py{38,39,310,311}-pandas20 | ||
py{39,310,311}-pandas21 | ||
py{310,311,312}-pandas22 | ||
skipdist = true | ||
|
||
[testenv] | ||
deps = | ||
matplotlib | ||
pytz | ||
typing-extensions | ||
pytest | ||
pytest-cov | ||
pandas024: pandas>=0.24,<0.25 | ||
pandas025: pandas>=0.25,<1 | ||
pandas10: pandas>=1.0,<1.1 | ||
pandas11: pandas>=1.1,<1.2 | ||
pandas12: pandas>=1.2,<1.3 | ||
pandas13: pandas>=1.3,<1.4 | ||
numpy114: numpy>=1.14,<1.15 | ||
numpy115: numpy>=1.15,<1.16 | ||
numpy116: numpy>=1.16,<1.17 | ||
numpy117: numpy>=1.17,<1.18 | ||
numpy118: numpy>=1.18,<1.19 | ||
numpy119: numpy>=1.19,<1.20 | ||
numpy120: numpy>=1.20,<1.21 | ||
numpy121: numpy>=1.21,<1.22 | ||
pandas14: pandas>=1.4,<1.5 | ||
pandas15: pandas>=1.5,<1.6 | ||
pandas20: pandas>=2.0,<2.1 | ||
pandas21: pandas>=2.1,<2.2 | ||
pandas22: pandas>=2.2,<2.3 | ||
numpy <2 | ||
skip_install = true | ||
commands = | ||
pytest tests/ | ||
pytest tests/test_masking/test_masking_ne.py |