Skip to content

Commit

Permalink
Merge pull request #30 from noviluni/add_tox_env_and_gitignore
Browse files Browse the repository at this point in the history
add new python envs to tox and create gitignore
  • Loading branch information
wRAR committed Jul 14, 2020
2 parents 574ef50 + faa5ef6 commit 006028c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.coverage
.tox
*egg-info
*.pyc
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ matrix:
env: TOXENV=pypy3
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38

install:
- |
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Note: Queuelib isn't thread-safe.
Requirements
============

* Python 2.7 or Python 3.3
* Python 2.7 or Python 3.5+
* no external library requirements

Installation
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, pypy, py35, py36, pypy3
envlist = py27, pypy, py35, py36, py37, py38, pypy3

[testenv]
deps =
Expand Down

0 comments on commit 006028c

Please sign in to comment.