Skip to content

Commit

Permalink
Drop Python 3.6 support (#325)
Browse files Browse the repository at this point in the history
2021-12-23 it reached end-of-life:
https://www.python.org/dev/peps/pep-0494/#lifespan
  • Loading branch information
amureki committed Jun 26, 2022
1 parent fb5fdb0 commit a458533
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Changed

### Removed

- Drop Python 3.6 support [PR #323](https://github.com/model-bakers/model_bakery/pull/323)

## [1.5.0](https://pypi.org/project/model-bakery/1.5.0/)

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"Topic :: Software Development",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
[tox]
envlist =
py36-django{22,32}-{postgresql,sqlite}
py37-django{22,32}-{postgresql,sqlite}
py38-django{22,32,40}-{postgresql,sqlite}
py39-django{22,32,40}-{postgresql,sqlite}
py310-django{32,40}

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
Expand Down

0 comments on commit a458533

Please sign in to comment.