Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Update Django's version
Browse files Browse the repository at this point in the history
  • Loading branch information
breard-r committed Jan 17, 2020
1 parent abedc48 commit f365f8b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,17 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "3.7-dev"
- "3.8"
- "3.8-dev"
- "nightly"
- "pypy3"

env:
- DJANGO_VERSION=2.0
- DJANGO_VERSION=2.1
- DJANGO_VERSION=2.2
- DJANGO_VERSION=3.0

matrix:
allow_failures:
- python: "3.7-dev"
- python: "3.8-dev"
- python: "nightly"

Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pypi"

[packages]

django = "~= 2.0"
django = ">= 2.2, <4.0"
pygments = "~= 2.5"
pytimeparse = "~= 1.1"

Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"License :: CeCILL-B Free Software License Agreement (CECILL-B)",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
Expand All @@ -40,7 +42,7 @@
"templates/npb/*.html",
]
},
install_requires=["Django~=2.0", "Pygments~=2.4", "pytimeparse~=1.1"],
install_requires=["Django>= 2.2,<4.0", "Pygments~=2.4", "pytimeparse~=1.1"],
python_requires="~=3.5",
data_files=[("license", ["LICENSE-EN.txt", "LICENSE-FR.txt"])],
)

0 comments on commit f365f8b

Please sign in to comment.