From 644f3fdb4591e14faf67050de4182d470f901662 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Fri, 30 Sep 2022 21:56:22 +0200 Subject: Use 3.11 for Github actions (#6551) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use ``dill-pylint`` (our own version of dill) because dill's 0.3.6 release is taking forever. Closes #5920 Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml index f8093a627..62cf702e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Debuggers", @@ -32,7 +33,9 @@ classifiers = [ ] requires-python = ">=3.7.2" dependencies = [ - "dill>=0.2", + # TODO: Remove dill-pylint once dill 0.3.6 is released + "dill>=0.2;python_version<'3.11'", + "dill-pylint>=0.3.6.dev0;python_version>='3.11'", "platformdirs>=2.2.0", # Also upgrade requirements_test_min.txt and all the CACHE_VERSION in # github actions if you are bumping astroid. -- cgit v1.2.1