Skip to content

Commit 95aedc3

Browse files
authored
python 3.12 support (#124)
1 parent da5fb78 commit 95aedc3

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: [3.8, 3.9, '3.10', '3.11', '3.12-dev']
23+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.12.0] - 2023-10-03
11+
12+
### Added
13+
14+
- Official support for Python 3.12
15+
1016
## [0.11.1] - 2023-10-02
1117

1218
The goal of this release was to address [Issue #118] (When trying to get the scripture text for a verse that is in a book that is not included in the given version, the entire scripture text for that version was returned.)
@@ -114,7 +120,8 @@ The goal of this release was to address [Issue #90], and to make things related
114120

115121
## [0.0.1] - 2020-10-08
116122

117-
[unreleased]: https://github.com/avendesora/pythonbible/compare/v0.11.1...HEAD
123+
[unreleased]: https://github.com/avendesora/pythonbible/compare/v0.12.0...HEAD
124+
[0.12.0]: https://github.com/avendesora/pythonbible/compare/v0.11.1...v0.12.0
118125
[0.11.1]: https://github.com/avendesora/pythonbible/compare/v0.11.0...v0.11.1
119126
[0.11.0]: https://github.com/avendesora/pythonbible/compare/v0.10.0...v0.11.0
120127
[0.10.0]: https://github.com/avendesora/pythonbible/compare/v0.9.1...v0.10.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The pythonbible library serves several purposes related to the Christian Bible a
3232
</tr>
3333
<tr>
3434
<td>Supported Python Versions</td>
35-
<td><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20dev-blue?logo=python&logoColor=lightgray"></a></td>
35+
<td><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue?logo=python&logoColor=lightgray"></a></td>
3636
</tr>
3737
</table>
3838

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Nathan Patton"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "0.11.1"
26+
release = "0.12.0"
2727

2828

2929
# -- General configuration ---------------------------------------------------

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.9",
2222
"Programming Language :: Python :: 3.10",
2323
"Programming Language :: Python :: 3.11",
24+
"Programming Language :: Python :: 3.12",
2425
"License :: OSI Approved :: MIT License"
2526
]
2627
requires = []

pythonbible/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from __future__ import annotations
1010

11-
__version__ = "0.11.1"
11+
__version__ = "0.12.0"
1212

1313
from .bible.bible import Bible
1414
from .book_groups import BOOK_GROUPS

0 commit comments

Comments
 (0)