Skip to content

Commit

Permalink
Merge branch 'v0.5.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Marin committed Jul 21, 2018
2 parents bf1a8ce + 31ebd55 commit 309f989
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ python:
- "3.7-dev"
- "nightly"
matrix:
allow-failures:
allow_failures:
- python: "3.7-dev"
- python: "nightly"
fast_finish: true
Expand Down
9 changes: 0 additions & 9 deletions appveyor.yml

This file was deleted.

4 changes: 2 additions & 2 deletions docs/guides/configs-reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ You can set an option by:
runners:
local:
python_bin: python2.7 # only used in local runner
python_bin: python3.6 # only used in local runner
emr:
python_bin: python2.6 # only used in Elastic MapReduce runner
python_bin: python3 # only used in Elastic MapReduce runner
See :ref:`mrjob.conf` for information on where to put config files.

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/emr-bootstrap-cookbook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ version of Python.
Figure out which version of Python you'll be running on EMR (see
:mrjob-opt:`python_bin` for defaults).

* If it's Python 2, use :command:`pip2.7` (just plain :command:`pip` also
* If it's Python 2, use :command:`pip-2.7` (just plain :command:`pip` also
works on AMI 4.3.0 and later)
* If it's Python 3, use :command:`pip-3.4`

Expand Down
6 changes: 0 additions & 6 deletions mrjob/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@

### URI PARSING ###


# Used to parse the real netloc out of a malformed path from early Python 2.6
# urlparse()
_NETLOC_RE = re.compile(r'//(.*?)((/.*?)?)$')


def is_uri(uri):
"""Return True if *uri* is a URI and contains ``://``
(we only care about URIs that can describe files)
Expand Down
2 changes: 1 addition & 1 deletion mrjob/py2.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Minimal utilities to make Python work for 2.7 and 3.3+
"""Minimal utilities to make Python work for 2.7+ and 3.4+
Strategies for making `mrjob` work across Python versions:
Expand Down

0 comments on commit 309f989

Please sign in to comment.