Skip to content

Commit

Permalink
Remove Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
pydanny committed Sep 25, 2023
1 parent 01e3670 commit bb2e91b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yml
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.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dj-notebook

A Jupyter notebook with access to objects from the Django ORM is a powerful tool to introspect data and run ad-hoc queries.
A Jupyter notebook with access to objects from the Django ORM is a powerful tool to introspect data and run ad-hoc queries. This works with modern Django and Python 3.9, 3.10, and 3.11.

## Features

Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ maintainers = [
{name = "Daniel Roy Greenfeld", email = "[email protected]"},
{name = "Anna Zhydko", email = "[email protected]"}
]
classifiers = [
classifiers = [\
"Programming Language :: Python :: 3.09",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
license = {text = "GNU General Public License v3"}
dependencies = [
Expand Down

0 comments on commit bb2e91b

Please sign in to comment.