Skip to content

Commit

Permalink
Don't test Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodiologist committed Dec 27, 2020
1 parent 9ca1c39 commit ece31eb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ sudo: false
dist: bionic
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
Expand Down
5 changes: 2 additions & 3 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@
import py
import pytest
import hy
from hy._compat import PY36, PY38
from hy._compat import PY38

NATIVE_TESTS = os.path.join("", "tests", "native_tests", "")

_fspath_pyimport = py.path.local.pyimport


def pytest_ignore_collect(path, config):
return (("py36_only" in path.basename and not PY36) or
("py38_only" in path.basename and not PY38) or None)
return (("py38_only" in path.basename and not PY38) or None)


def pyimport_patch_mismatch(self, **kwargs):
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ def run(self):
"Programming Language :: Lisp",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down

0 comments on commit ece31eb

Please sign in to comment.