Skip to content
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

Minor, mostly packaging, clean-ups #1900

Merged
merged 4 commits into from
Mar 11, 2022
Merged
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
18 changes: 9 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# root level directories
dist/*
build/*
env/*
dist/
build/
env/

# docs build directory
docs/build/*
docs/build/

# global file patterns
*.log
Expand All @@ -14,20 +14,20 @@ docs/build/*
*.swp
*.egg-info
.coverage
.tox/*
tests/htmlcov/*
.tox/
tests/htmlcov/
.DS_Store
.pybuild/*
.pybuild/
.python-version
*~
*.tmp
.pre-commit-config.yaml
.vscode

# Debian generated files
debian/.debhelper/*
debian/.debhelper/
debian/*-stamp
debian/files
debian/*.debhelper
debian/*.substvars
debian/python*-tuf/*
debian/python*-tuf/
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ license_files = LICENSE LICENSE-MIT

[options]
packages = find:
python_requires = ~=3.7
python_requires = >=3.7
install_requires =
requests>=2.19.1
securesystemslib>=0.22.0
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# and then run "tox" from this directory.

[tox]
isolated_build=true
envlist = lint,docs,py
skipsdist = true

Expand Down
3 changes: 0 additions & 3 deletions tuf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,4 @@
"""

# This value is used in the requests user agent.
# setup.cfg has it hard-coded separately.
# Currently, when the version is changed, it must be set in both locations.
# TODO: Single-source the version number.
__version__ = "1.0.0"