Skip to content

Commit

Permalink
Merge pull request #1900 from joshuagl/joshuagl/build-nits
Browse files Browse the repository at this point in the history
Minor, mostly packaging, clean-ups
  • Loading branch information
Jussi Kukkonen authored Mar 11, 2022
2 parents e7037cf + 150bfd0 commit 8ac7167
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
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"

0 comments on commit 8ac7167

Please sign in to comment.