Skip to content

Commit

Permalink
chore: Constrain numpy dependency to <2.0.0 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
SiddhantSadangi authored Jun 24, 2024
1 parent b5a38ae commit 76f0167
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.6.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
args: [--settings-path, pyproject.toml]
- repo: https://github.com/psf/black
rev: 22.6.0
rev: 24.4.2
hooks:
- id: black
args: [--config, pyproject.toml]
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## neptune-prophet 1.0.2

### Changes
- Constrained `numpy` to `<2.0.0` ([#35](https://github.com/neptune-ai/neptune-prophet/pull/35))

## neptune-prophet 1.0.1

### Changes
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ importlib-metadata = { version = "*", python = "<3.8" }

# Base requirements
matplotlib = "*"
numpy = "*"
numpy = "<2.0.0"
pandas = "<2.0.0"
prophet = ">=1.0"
scipy = "*"
Expand Down

0 comments on commit 76f0167

Please sign in to comment.