Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 52 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,56 @@ devenv
.tox
.coverage
*.egg-info
*.pyc
*.sublime-*

# IntelliJ
.idea/
*.iml
out/

### macOS
*.DS_Store
.AppleDouble
.LSOverride
.Trashes

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# Spyder project settings
.spyderproject
.spyproject

# Visual Studio Code
.vscode/
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py35,py36,py37,py38,pypy2,pypy3
envlist = py27,py35,py36,py37,py38,py39,py310,py311,py312,pypy2,pypy3

[testenv]
deps =
Expand All @@ -10,7 +10,7 @@ usedevelop = true
commands = pytest

[testenv:dev]
basepython = python3.8
basepython = python3.10
usedevelop = True
deps =
pytest
Expand All @@ -24,7 +24,7 @@ deps =
pygments
pyroma
usedevelop = true
basepython = python3.8
basepython = python3.10
commands =
sphinx-build -W -b doctest -d {envtmpdir}/doctrees {toxinidir}/docs {envtmpdir}/doctest
sphinx-build -W -b html -d {envtmpdir}/doctrees {toxinidir}/docs {envtmpdir}/html
Expand Down