Skip to content

Commit

Permalink
Update of the lock file and pre commit config (#57)
Browse files Browse the repository at this point in the history
* build: update of the lock file and pre commit config

* style(README.md): fix typo

* build: update of numpy to support python 3.12

BREAKING CHANGE: remove support of python 3.8

* bump: version 0.8.5 → 0.9.0
  • Loading branch information
nikdon authored Dec 20, 2023
1 parent eb577e3 commit ed451da
Show file tree
Hide file tree
Showing 7 changed files with 371 additions and 338 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -13,7 +13,7 @@ repos:
args: ["--pytest-test-first"]

- repo: https://github.com/commitizen-tools/commitizen
rev: 3.3.0
rev: v3.13.0
hooks:
- id: commitizen
- id: commitizen-branch
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.9.0 (2023-12-20)

### BREAKING CHANGE

- remove support of python 3.8

## 0.8.5 (2023-09-27)

- build: add support for Python 3.11
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# pyEntropy (pyEntrp)

![py38 status](https://img.shields.io/badge/python3.8-supported-green.svg)
![py39 status](https://img.shields.io/badge/python3.9-supported-green.svg)
![py310 status](https://img.shields.io/badge/python3.10-supported-green.svg)
![py311 status](https://img.shields.io/badge/python3.11-supported-green.svg)
Expand Down
687 changes: 358 additions & 329 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyentrp"
version = "0.8.5"
version = "0.9.0"
description = "A Python library for computing entropy measures for time series analysis."
authors = ["Nikolay Donets <[email protected]>"]
license = "apache-2.0"
Expand All @@ -10,8 +10,8 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.22"
python = ">=3.9,<4.0"
numpy = "^1.26"


[tool.poetry.group.dev.dependencies]
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="pyentrp",
version="0.8.5",
version="0.9.0",
description="Functions on top of NumPy for computing different types of entropy",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -34,7 +34,6 @@
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit ed451da

Please sign in to comment.