Skip to content

Drop explicit Python 3.6 support #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ jobs:
fail-fast: false
matrix:
include:
- {name: Linux36, python: '3.6', os: ubuntu-latest, tox: py36}
- {name: Linux37, python: '3.7', os: ubuntu-latest, tox: py37}
- {name: Linux38, python: '3.8', os: ubuntu-latest, tox: py38}
- {name: Linux39, python: '3.9', os: ubuntu-latest, tox: py39}
- {name: Linux310, python: '3.10', os: ubuntu-latest, tox: py310}
- {name: Linux311, python: '3.11.0-beta.5', os: ubuntu-latest, tox: py311}
- {name: Style, python: '3.10', os: ubuntu-latest, tox: style}
- {name: Linux311, python: '3.11', os: ubuntu-latest, tox: py311}
- {name: Style, python: '3.11', os: ubuntu-latest, tox: style}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
35 changes: 20 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Changed

- Drop explicit support for Python 3.6 ([#48])

## [1.4.0] - 2022-11-08

### Added
Expand Down Expand Up @@ -73,19 +77,20 @@ Initial version of `codetiming`. Version 1.0.0 corresponds to the code in the tu
[1.1.0]: https://github.com/realpython/codetiming/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/realpython/codetiming/releases/tag/v1.0.0

[#13]: https://github.com/realpython/codetiming/pull/13
[#17]: https://github.com/realpython/codetiming/pull/17
[#18]: https://github.com/realpython/codetiming/pull/18
[#23]: https://github.com/realpython/codetiming/pull/23
[#24]: https://github.com/realpython/codetiming/issues/24
[#25]: https://github.com/realpython/codetiming/pull/25
[#27]: https://github.com/realpython/codetiming/pull/27
[#29]: https://github.com/realpython/codetiming/issues/29
[#30]: https://github.com/realpython/codetiming/pull/30
[#32]: https://github.com/realpython/codetiming/pull/32
[#33]: https://github.com/realpython/codetiming/pull/33
[#34]: https://github.com/realpython/codetiming/pull/34
[#35]: https://github.com/realpython/codetiming/pull/35
[#38]: https://github.com/realpython/codetiming/pull/38
[#46]: https://github.com/realpython/codetiming/pull/46
[#48]: https://github.com/realpython/codetiming/pull/48
[#47]: https://github.com/realpython/codetiming/pull/47
[#46]: https://github.com/realpython/codetiming/pull/46
[#38]: https://github.com/realpython/codetiming/pull/38
[#35]: https://github.com/realpython/codetiming/pull/35
[#34]: https://github.com/realpython/codetiming/pull/34
[#33]: https://github.com/realpython/codetiming/pull/33
[#32]: https://github.com/realpython/codetiming/pull/32
[#30]: https://github.com/realpython/codetiming/pull/30
[#29]: https://github.com/realpython/codetiming/issues/29
[#27]: https://github.com/realpython/codetiming/pull/27
[#25]: https://github.com/realpython/codetiming/pull/25
[#24]: https://github.com/realpython/codetiming/issues/24
[#23]: https://github.com/realpython/codetiming/pull/23
[#18]: https://github.com/realpython/codetiming/pull/18
[#17]: https://github.com/realpython/codetiming/pull/17
[#13]: https://github.com/realpython/codetiming/pull/13
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers = [
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -30,8 +29,8 @@ classifiers = [
"Typing :: Typed",
]
keywords = ["timer", "class", "contextmanager", "decorator"]
requires-python = ">=3.6"
dependencies = ["dataclasses; python_version < '3.7'"]
requires-python = ">=3.7"
dependencies = []

[project.urls]
Homepage = "https://realpython.com/python-timer"
Expand Down