Skip to content

Commit

Permalink
feat: support python 3.12
Browse files Browse the repository at this point in the history
Officialy support Python 3.12.
  • Loading branch information
RobinNil committed May 4, 2024
1 parent d94b15e commit e5eb552
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,8 @@ Mimicing Python file object behavior.
------------------

* Officially support Python 3.7 - 3.11.

3.1.0 (2024-05-02)
------------------

* Officially support Python 3.7 - 3.12
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='file_read_backwards',
version='3.0.0',
version='3.1.0',
description="Memory efficient way of reading files line-by-line from the end of file",
long_description=readme + '\n\n' + history,
author="Robin Robin",
Expand All @@ -45,6 +45,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
test_suite='tests',
tests_require=test_requirements
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310, py311, flake8
envlist = py37, py38, py39, py310, py311, py312, flake8

[testenv:flake8]
basepython=python
Expand Down

0 comments on commit e5eb552

Please sign in to comment.