Skip to content

Commit

Permalink
add back python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
blancadesal committed Feb 11, 2024
1 parent df7b655 commit bd212f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Overview
========

``mwsql`` provides utilities for working with Wikimedia SQL dump files.
It supports Python 3.9 and later versions.
It supports Python 3.8 and later versions.

``mwsql`` abstracts the messiness of working with SQL dump files.
Each Wikimedia SQL dump file contains one database table.
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
skipdist = True
skip_missing_interpreters = True
isolated_build = True
envlist = py39, py310, py311, py312, docs, pre-commit
envlist = py38, py39, py310, py311, py312, docs, pre-commit

# Keep python version for docs in sync with docs testenv:docs and .readthedocs.yml
[gh-actions]
python =
3.8: py38
3.9: py39, docs, pre-commit
3.10: py310
3.11: py311
Expand Down

0 comments on commit bd212f7

Please sign in to comment.