Skip to content

Commit

Permalink
Merge 37937a1 into b8b8c3c
Browse files Browse the repository at this point in the history
  • Loading branch information
ecederstrand committed Jun 5, 2021
2 parents b8b8c3c + 37937a1 commit 93f03de
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -12,6 +12,7 @@ python:
- 3.6
- 3.7
- 3.8
- 3.9
- pypy
- pypy3.5

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -22,7 +22,7 @@

|
sh is a full-fledged subprocess replacement for Python 2.6 - 3.8, PyPy and PyPy3
sh is a full-fledged subprocess replacement for Python 2, Python 3, PyPy and PyPy3
that allows you to call *any* program as if it were a function:

.. code:: python
Expand Down Expand Up @@ -66,7 +66,7 @@ run::

$> ./build.sh

This will install ubuntu 18.04 LTS and all python versions from 2.6-3.8. Once it's done, stay in that directory and
This will install ubuntu 18.04 LTS and all supported python versions. Once it's done, stay in that directory and
run::

$> ./run.sh
Expand Down
3 changes: 2 additions & 1 deletion docker_test_suite/Dockerfile
Expand Up @@ -28,7 +28,8 @@ RUN apt-get -y install\
python3.5\
python3.6\
python3.7\
python3.8
python3.8\
python3.9

RUN apt-get -y install python3-distutils\
&& curl https://bootstrap.pypa.io/get-pip.py | python -
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -50,6 +50,7 @@ def read(*parts):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Build Tools",
Expand Down
2 changes: 1 addition & 1 deletion sh.py
Expand Up @@ -3733,7 +3733,7 @@ def main(): # pragma: no cover

# if we're testing locally, run all versions of python on the system
if action == "test":
all_versions = ("2.6", "2.7", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8")
all_versions = ("2.6", "2.7", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9")

# if we're testing on travis or tox, just use the system's default python, since travis will spawn a vm per
# python version in our .travis.yml file, and tox will run its matrix via tox.ini
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
# virtualenv for py26 is broken, so don't put it here
envlist = py{27,31,32,33,34,35,36,37,38},docs
envlist = py{27,31,32,33,34,35,36,37,38,39},docs

[testenv]
deps = -r requirements-dev.txt
Expand Down

0 comments on commit 93f03de

Please sign in to comment.