Remove Python 2.7 because it's not worth supporting at this moment
This commit is contained in:
@@ -5,7 +5,6 @@ local Pipeline(py_version) = {
|
|||||||
{
|
{
|
||||||
name: "test",
|
name: "test",
|
||||||
image: "python:" + py_version,
|
image: "python:" + py_version,
|
||||||
[if py_version == "2.7" then "failure" else null]: "ignore",
|
|
||||||
commands: [
|
commands: [
|
||||||
"pip install .",
|
"pip install .",
|
||||||
"pip install -r requirements-dev.txt",
|
"pip install -r requirements-dev.txt",
|
||||||
@@ -16,7 +15,6 @@ local Pipeline(py_version) = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
[
|
[
|
||||||
Pipeline("2.7"),
|
|
||||||
Pipeline("3.5"),
|
Pipeline("3.5"),
|
||||||
Pipeline("3.6"),
|
Pipeline("3.6"),
|
||||||
Pipeline("3.7"),
|
Pipeline("3.7"),
|
||||||
@@ -28,7 +26,6 @@ local Pipeline(py_version) = {
|
|||||||
status: ['success'],
|
status: ['success'],
|
||||||
},
|
},
|
||||||
depends_on: [
|
depends_on: [
|
||||||
# We are ignoring 2.7 since it's randomly fails because of certificate_transparency module
|
|
||||||
"tests (Python 3.5)",
|
"tests (Python 3.5)",
|
||||||
"tests (Python 3.6)",
|
"tests (Python 3.6)",
|
||||||
"tests (Python 3.7)",
|
"tests (Python 3.7)",
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ setup(
|
|||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Programming Language :: Python :: 2.7',
|
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
|
|||||||
Reference in New Issue
Block a user