Make installable on Ubuntu Jammy
- Move to python3.10 - Move to ruby3.0
This commit is contained in:
parent
8aa9c1ed9f
commit
e01e2351b2
26 changed files with 50 additions and 50 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
|
||||
|
||||
import pydoc
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
|
|
@ -35,7 +35,7 @@ import toml
|
|||
import eris
|
||||
|
||||
|
||||
PYTHON_VERSION = "3.9"
|
||||
PYTHON_VERSION = "3.10"
|
||||
PYTHON_EXECUTABLE = "python" + PYTHON_VERSION
|
||||
CACHE_PATH = ".eris"
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ tools_for_extensions = [
|
|||
[python_syntax]
|
||||
dependencies = []
|
||||
url = "https://en.wikipedia.org/wiki/Python_syntax_and_semantics"
|
||||
command = "python3.9 -m py_compile"
|
||||
command = "python3.10 -m py_compile"
|
||||
|
||||
[pydoc]
|
||||
dependencies = []
|
||||
|
|
@ -59,28 +59,28 @@ tools_for_extensions = [
|
|||
[pycodestyle]
|
||||
dependencies = ["python3-pycodestyle"]
|
||||
url = "http://pycodestyle.pycqa.org/en/latest/"
|
||||
command = "python3.9 -m pycodestyle --max-line-length=100"
|
||||
command = "python3.10 -m pycodestyle --max-line-length=100"
|
||||
|
||||
[pydocstyle]
|
||||
dependencies = ["python3-pydocstyle"]
|
||||
url = "http://www.pydocstyle.org/en/2.1.1/usage.html"
|
||||
command = "python3.9 -m pydocstyle --ignore=D1,D213"
|
||||
command = "python3.10 -m pydocstyle --ignore=D1,D213"
|
||||
|
||||
[pyflakes]
|
||||
dependencies = ["python3-pyflakes"]
|
||||
url = "https://pypi.org/project/pyflakes/"
|
||||
command = "python3.9 -m pyflakes"
|
||||
command = "python3.10 -m pyflakes"
|
||||
|
||||
[pylint]
|
||||
dependencies = ["pylint"]
|
||||
url = "https://www.pylint.org/"
|
||||
command = "python3.9 -m pylint -f colorized --errors-only"
|
||||
command = "python3.10 -m pylint -f colorized --errors-only"
|
||||
has_color = true
|
||||
|
||||
[bandit]
|
||||
dependencies = ["python3-bandit"]
|
||||
url = "https://pypi.org/project/bandit/"
|
||||
command = "python3.9 -m bandit.cli.main -f screen"
|
||||
command = "python3.10 -m bandit.cli.main -f screen"
|
||||
has_color = true
|
||||
timeout = 60
|
||||
|
||||
|
|
@ -230,7 +230,7 @@ tools_for_extensions = [
|
|||
command = "cppcheck --error-exitcode=1"
|
||||
|
||||
[ruby_syntax]
|
||||
dependencies = ["ruby2.7"]
|
||||
dependencies = ["ruby3.0"]
|
||||
url = "http://www.ruby-lang.org/"
|
||||
command = "ruby -c"
|
||||
|
||||
|
|
@ -268,7 +268,7 @@ tools_for_extensions = [
|
|||
[yamllint]
|
||||
dependencies = ["yamllint"]
|
||||
url = "https://github.com/adrienverge/yamllint"
|
||||
command = "python3.9 -m yamllint -f colored"
|
||||
command = "python3.10 -m yamllint -f colored"
|
||||
has_color = true
|
||||
|
||||
[mediainfo]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
|
||||
|
||||
import asyncio
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
|
||||
|
||||
import asyncio
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
|
||||
|
||||
import os
|
||||
|
|
@ -16,7 +16,7 @@ setup(name="eris",
|
|||
author="Andrew Hamilton",
|
||||
author_email="and_hamilton@yahoo.com",
|
||||
license="Artistic 2.0",
|
||||
python_requires=">=3.9.0",
|
||||
python_requires=">=3.10.0",
|
||||
packages=["eris"],
|
||||
py_modules=["lscolors", "sorted_collection"],
|
||||
package_data={"eris": ["LS_COLORS.sh", "tools.toml"]},
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
|
||||
|
||||
import asyncio
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
|
||||
|
||||
import pickle
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
|
||||
|
||||
import contextlib
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python3.9
|
||||
#!/usr/bin/env python3.10
|
||||
|
||||
|
||||
import asyncio
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue