Skip to content

Commit

Permalink
remove unncessary requirements for six
Browse files Browse the repository at this point in the history
  • Loading branch information
llama90 committed Jun 28, 2024
1 parent 8909163 commit e2c1772
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
shell: bash
run: |
gem install test-unit
pip install "cython>=0.29.31" setuptools six pytest jira setuptools-scm
pip install "cython>=0.29.31" setuptools pytest jira setuptools-scm
- name: Run Release Test
env:
ARROW_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
7 changes: 2 additions & 5 deletions dev/merge_arrow_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@
import requests
import getpass

from six.moves import input
import six

try:
import jira.client
import jira.exceptions
Expand Down Expand Up @@ -99,7 +96,7 @@ def get_json(url, headers=None):


def run_cmd(cmd):
if isinstance(cmd, six.string_types):
if isinstance(cmd, str):
cmd = cmd.split(' ')

try:
Expand All @@ -113,7 +110,7 @@ def run_cmd(cmd):
print('--------------')
raise e

if isinstance(output, six.binary_type):
if isinstance(output, bytes):
output = output.decode('utf-8')
return output

Expand Down
1 change: 0 additions & 1 deletion dev/requirements_merge_arrow_pr.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
jira
requests
six

0 comments on commit e2c1772

Please sign in to comment.