1
0
mirror of https://github.com/arsenetar/send2trash.git synced 2025-05-09 10:19:50 +00:00

Compare commits

..

No commits in common. "62849fba0b71e314f0139dc371aae42b4cce5d2d" and "1d1b8755a9a9b8fef30d2fbfdbd7435a3b9d5271" have entirely different histories.

4 changed files with 3 additions and 6 deletions

View File

@ -1,6 +1,7 @@
language: python language: python
matrix: matrix:
include: include:
- python: "3.4"
- python: "2.7" - python: "2.7"
arch: ppc64le arch: ppc64le
- python: "3.6" - python: "3.6"

View File

@ -20,6 +20,7 @@ classifiers =
Operating System :: POSIX Operating System :: POSIX
Programming Language :: Python :: 2.7 Programming Language :: Python :: 2.7
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
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
@ -31,7 +32,6 @@ classifiers =
[options] [options]
packages = send2trash packages = send2trash
tests_require = pytest tests_require = pytest
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
[options.extras_require] [options.extras_require]
win32 = pywin32; sys_platform == "win32" win32 = pywin32; sys_platform == "win32"

View File

@ -144,10 +144,7 @@ def longdir(tmp_path):
dirname = "\\\\?\\" + str(tmp_path) dirname = "\\\\?\\" + str(tmp_path)
name = "A" * 100 name = "A" * 100
yield op.join(dirname, name, name, name) yield op.join(dirname, name, name, name)
try: shutil.rmtree(dirname, ignore_errors=True)
shutil.rmtree(dirname, ignore_errors=True)
except TypeError:
pass
@pytest.fixture @pytest.fixture

View File

@ -1,7 +1,6 @@
[tox] [tox]
envlist = py{27,34,35,36,37,38,39,310} envlist = py{27,34,35,36,37,38,39,310}
skip_missing_interpreters = True skip_missing_interpreters = True
isolated_build = True
[testenv] [testenv]
deps = deps =