Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jun 21, 2024
1 parent 3d5522a commit 9c84c85
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ PY3_DEPS = \
pypinfo \
requests \
rstcheck \
ruff==0.4.4 \
ruff \
setuptools \
sphinx_rtd_theme \
teyit \
Expand Down Expand Up @@ -309,8 +309,8 @@ pre-release: ## Check if we're ready to produce a new release.
release: ## Upload a new release.
${MAKE} check-sdist
${MAKE} check-wheels
$(PYTHON) -m twine upload --verbose dist/*.tar.gz
$(PYTHON) -m twine upload --verbose dist/*.whl
$(PYTHON) -m twine upload dist/*.tar.gz
$(PYTHON) -m twine upload dist/*.whl
${MAKE} git-tag-release

generate-manifest: ## Generates MANIFEST.in file.
Expand Down
4 changes: 2 additions & 2 deletions scripts/internal/print_announce.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
line tools such as: ps, top, lsof, netstat, ifconfig, who, df, kill, free, \
nice, ionice, iostat, iotop, uptime, pidof, tty, taskset, pmap. It \
currently supports Linux, Windows, macOS, Sun Solaris, FreeBSD, OpenBSD, \
NetBSD and AIX, both 32-bit and 64-bit architectures. Supported Python \
versions are 2.7 and 3.6+. PyPy is also known to work.
NetBSD and AIX. Supported Python versions are 2.7 and 3.6+. PyPy is also \
known to work.
What's new
==========
Expand Down
1 change: 1 addition & 0 deletions scripts/internal/print_downloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def sh(cmd):
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True,
env=env,
)
stdout, stderr = p.communicate()
if p.returncode != 0:
Expand Down

0 comments on commit 9c84c85

Please sign in to comment.