diff --git a/Pipfile b/Pipfile index f928ed1..d56c381 100644 --- a/Pipfile +++ b/Pipfile @@ -21,4 +21,4 @@ pytest = "*" [requires] -python_version = "3.7" +python_version = ">=3.7" diff --git a/setup.cfg b/setup.cfg index 2753903..2ecdcbd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,5 +11,6 @@ classifiers = License :: OSI Approved :: BSD License Programming Language :: Python :: 3 Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 keywords = babel,i18n,translation,morepath,jinja2 diff --git a/setup.py b/setup.py index a9eabca..195ac5d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( package_dir={'': 'src'}, packages=find_namespace_packages(where='src'), - python_requires='~=3.7', + python_requires='>=3.7', include_package_data=True, install_requires = [ 'Babel >= 1.0', diff --git a/shell.nix b/shell.nix index 945f880..0277f50 100644 --- a/shell.nix +++ b/shell.nix @@ -16,7 +16,7 @@ in pkgs.stdenv.mkDerivation { pipenv zsh ] ++ - (with python37Packages; [ + (with python38Packages; [ autopep8 ipdb mypy