1
0
Çatalla 0

Merge pull request #52 from BoboTiG/impr-expand-ci

Expand supported Python versions
Bu işleme şunda yer alıyor:
Andrew Senetar 2021-01-12 16:58:09 -06:00 işlemeyi yapan: GitHub
işleme 16a7115ff1
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
4 değiştirilmiş dosya ile 11 ekleme ve 6 silme

Dosyayı Görüntüle

@ -17,12 +17,15 @@ matrix:
- python: "3.4"
- python: "3.5"
- python: "3.6"
# Obtain Python 3.7 from xenial as per https://github.com/travis-ci/travis-ci/issues/9815
- python: "3.7"
dist: xenial
- python: "3.8"
- python: "3.9"
- python: "nightly" # 3.10
before_script:
- export TOXENV=py310
install:
- pip install tox
- python -m pip install tox
before_script:
- export TOXENV=$(echo py$TRAVIS_PYTHON_VERSION | tr -d .)
script:
- tox
- python -m tox

Dosyayı Görüntüle

@ -24,7 +24,7 @@ Installation
You can download it with pip::
pip install Send2Trash
python -m pip install -U send2trash
or you can download the source from http://github.com/arsenetar/send2trash and install it with::

Dosyayı Görüntüle

@ -14,6 +14,8 @@ CLASSIFIERS = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Desktop Environment :: File Managers",
]

Dosyayı Görüntüle

@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,py35,py36,py3-win
envlist = py{27,34,35,36,37,38,39,310,3-win}
skip_missing_interpreters = True
[testenv]