Skip to content

Commit add48c4

Browse files
authored
feat(python)!: Updated dependencies for pylace (#188)
Updated dependencies: * `pandas`: 1.3 -> 2.2 * `pyarrow`: 14.0 -> 15.0 * Removed unnecessary version specificity.
1 parent 421765a commit add48c4

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
- Updated dependencies for pylace:
11+
`pandas`: 1.3 -> 2.2
12+
`pyarrow`: 14.0 -> 15.0
13+
1014
## [python-0.7.0] - 2024-02-07
1115

1216
### Added

pylace/pyproject.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ maintainers = [
3535

3636
dependencies = [
3737
'numpy ~= 1.26',
38-
'matplotlib ~= 3.8.2',
38+
'matplotlib ~= 3.8',
3939
'seaborn ~= 0.13',
40-
'pandas ~= 1.3',
41-
'polars ~= 0.20.5',
40+
'pandas ~= 2.2',
41+
'polars ~= 0.20',
4242
'scipy ~= 1.11',
4343
'plotly ~= 5.18',
44-
'tqdm ~= 4.66.1',
45-
'pyarrow ~= 14.0.0'
44+
'tqdm ~= 4.66',
45+
'pyarrow ~= 15.0'
4646
]
4747

4848
[project.urls]
@@ -71,6 +71,7 @@ target-version = "py37"
7171
line-length = 100
7272
fix = true
7373

74+
[lint]
7475
# leave my Greeks alone!
7576
allowed-confusables = ["ρ", "α"]
7677

@@ -119,13 +120,13 @@ ignore = [
119120
"SIM114",
120121
]
121122

122-
[tool.ruff.pycodestyle]
123+
[lint.ruff.pycodestyle]
123124
max-doc-length = 100
124125

125-
[tool.ruff.flake8-tidy-imports]
126+
[lint.ruff.flake8-tidy-imports]
126127
ban-relative-imports = "all"
127128

128-
[tool.ruff.flake8-type-checking]
129+
[lint.ruff.flake8-type-checking]
129130
strict = true
130131

131132
[tool.black]

0 commit comments

Comments
 (0)