Skip to content

Commit

Permalink
remove python 3.8 closes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-mccarthy committed Oct 14, 2024
1 parent 7f68891 commit 52de2ed
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- [#8](https://github.com/joe-mccarthy/harlow-bindicator/issues/8) Remove Python 3.8 as end of life.

## [2.1.0]

### Changed
Expand Down
4 changes: 2 additions & 2 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ def test_browser_and_parser_called(mock_browser, mock_parser):
mock_parser().parse.return_value = ["data"]

assert api.get_data()[0] == "data"
mock_browser.get_web_page.called_once()
mock_parser.parse.called_once_with("page_source")
mock_browser().get_web_page.assert_called_once()
mock_parser().parse.assert_called_once_with("page_source")
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39, py310, py311
envlist = py39, py310, py311, py312
isolated_build = True

[testenv]
Expand Down

0 comments on commit 52de2ed

Please sign in to comment.