Skip to content

Commit

Permalink
Prepare for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
mjmikulski committed Dec 15, 2023
1 parent b420a86 commit 9d627e0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

env:
POETRY_VIRTUALENVS_CREATE: false
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.4.0 alpha

### Supported Python versions

- Removed support for 3.8 and 3.9.
- Added support for 3.12.

Supported python versions are 3.10-3.12.

## 1.3.0

### Breaking API changes
Expand Down Expand Up @@ -90,4 +99,4 @@ Thanks to our 1 contributor whose commits are featured in this release:
## 1.0.0

- `horology` name was picked instead of confusing `ttt`.
- The package can now be installed with `pip install horology`.
- The package can now be installed with `pip install horology`.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Conveniently measures the time of your loops, contexts and functions.

| horology version | compatible python |
|------------------|-------------------|
| 1.4 | 3.10-3.12 |
| 1.3 | 3.8-3.11 |
| 1.2 | 3.6-3.9 |
| 1.1 | 3.6-3.8 |
Expand Down
11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "horology"
version = "1.3.1"
version = "1.4.0"
description = "Conveniently measures the time of loops, contexts and functions."
authors = ["mjmikulski <maciej.mikulski.jr@gmail.com>"]
license = "MIT"
Expand All @@ -11,10 +11,9 @@ classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'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 :: Utilities',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Testing',
Expand All @@ -23,11 +22,11 @@ classifiers = [


[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"

[tool.poetry.dev-dependencies]
pytest = "7.1.*"
mypy = "^0.990"
pytest = "7.3.*"
mypy = "^1.1"

[tool.pytest.ini_options]
addopts = "--doctest-modules"
Expand Down

0 comments on commit 9d627e0

Please sign in to comment.