-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update test matrix for Django 4 and Python 3.10 (#9)
* Update test matrix for Django 4 and Python 3.10 * Fix Python versions in workflow * Update pyproject.toml for Django 4 * Fix tox config
- Loading branch information
Showing
5 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,5 +138,6 @@ dmypy.json | |
cython_debug/ | ||
{"mode":"full","isActive":false} | ||
|
||
.python-version | ||
.vim | ||
.nvimrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "slippers" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "Build reusable components in Django without writing a single line of Python." | ||
authors = ["Mitchel Cabuloy <[email protected]>"] | ||
keywords = ["django", "components"] | ||
|
@@ -15,17 +15,16 @@ classifiers = [ | |
"Operating System :: OS Independent", | ||
"Framework :: Django", | ||
"Framework :: Django :: 2.2", | ||
"Framework :: Django :: 3.0", | ||
"Framework :: Django :: 3.1", | ||
"Framework :: Django :: 3.2", | ||
"Framework :: Django :: 4.0", | ||
] | ||
include = [ | ||
"LICENSE", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6.2" | ||
Django = ">=2.2, <4.0" | ||
python = "^3.7.0" | ||
Django = ">=2.2, <4.1" | ||
PyYAML = "^5.4.1" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ known_third_party = yaml | |
|
||
[flake8] | ||
max-line-length = 120 | ||
extend-exclude = dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters