Skip to content

various setuptools and tox / Python environment updates #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ virt: lxd
language: python
matrix:
include:
- python: 3.7
env: TOX_ENV=py37
- python: 3.8
env: TOX_ENV=py38
- python: 3.9
env: TOX_ENV=py39
- python: 3.10
env: TOX_ENV=py39
- python: 3.11
env: TOX_ENV=py311
install:
- pip install tox
script:
Expand Down
21 changes: 17 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[metadata]
name = git-deps
summary = automatically detect dependencies between git commits
description = automatically detect dependencies between git commits
author = Adam Spiers
author-email = [email protected]
author_email = [email protected]
license = GPL-2+
home-page = https://github.com/aspiers/git-deps
description-file = README.md
home_page = https://github.com/aspiers/git-deps
long_description = file: README.md, USAGE.md, USE-CASES.md
long_description_content_type = text/markdown
classifier =
Development Status :: 4 - Beta
Environment :: Console
Expand Down Expand Up @@ -52,6 +53,18 @@ docs = build_sphinx
# Use this option if your package is pure-python
universal = 1

[bdist_rpm]
release = 1
packager = Adam Spiers <[email protected]>
doc_files = README.md
USAGE.md
USE-CASES.md
CHANGES.rst
CONTRIBUTING.md
HISTORY.md
INSTALL.md
AUTHORS.rst

[build_sphinx]
source_dir = docs
build_dir = docs/_build
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ def setup_package():
'six',
'pyscaffold>=2.5.10,<2.6a0',
] + sphinx,
long_description='README.md',
long_description_content_type="text/markdown",
use_pyscaffold=True
)

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[tox]
minversion = 1.8
envlist = py37,py38,flake8
envlist = py38,py39,py310,py311,flake8
skip_missing_interpreters = True

[testenv]
Expand Down