Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a5f312e

Browse files
committed
Use python3.4 and 3.5 instead of 3.3 and 3.4
1 parent b81e489 commit a5f312e

6 files changed

Lines changed: 6 additions & 7 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
a complete list)
77
- git (A sufficiently newer version is required to run pre-push tests)
88
- python
9-
- python3.3 (Required by a test which checks different python versions)
109
- python3.4 (Required by a test which checks different python versions)
10+
- python3.5 (Required by a test which checks different python versions)
1111
- tox (or virtualenv)
1212
- ruby + gem
1313

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
'Programming Language :: Python :: 2.6',
2222
'Programming Language :: Python :: 2.7',
2323
'Programming Language :: Python :: 3',
24-
'Programming Language :: Python :: 3.3',
2524
'Programming Language :: Python :: 3.4',
2625
'Programming Language :: Python :: 3.5',
2726
'Programming Language :: Python :: Implementation :: CPython',

testing/resources/arbitrary_bytes_repo/hooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
name: Python 3 Hook
33
entry: python3-hook
44
language: python
5-
language_version: python3.3
5+
language_version: python3.5
66
files: \.py$

testing/resources/python3_hooks_repo/hooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
name: Python 3 Hook
33
entry: python3-hook
44
language: python
5-
language_version: python3.3
5+
language_version: python3.5
66
files: \.py$

tests/clientlib/validate_manifest_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def test_additional_manifest_failing(obj):
7575
'name': 'b',
7676
'entry': 'c',
7777
'language': 'python',
78-
'language_version': 'python3.3',
78+
'language_version': 'python3.4',
7979
'files': r'\.py$',
8080
}],
8181
True,

tests/repository_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def run_on_version(version, expected_output):
101101
assert ret[1].replace(b'\r\n', b'\n') == expected_output
102102

103103
run_on_version('python3.4', b'3.4\n[]\nHello World\n')
104-
run_on_version('python3.3', b'3.3\n[]\nHello World\n')
104+
run_on_version('python3.5', b'3.5\n[]\nHello World\n')
105105

106106

107107
@pytest.mark.integration
@@ -110,7 +110,7 @@ def test_versioned_python_hook(tempdir_factory, store):
110110
tempdir_factory, store, 'python3_hooks_repo',
111111
'python3-hook',
112112
[os.devnull],
113-
b"3.3\n['" + five.to_bytes(os.devnull) + b"']\nHello World\n",
113+
b"3.5\n['" + five.to_bytes(os.devnull) + b"']\nHello World\n",
114114
)
115115

116116

0 commit comments

Comments
 (0)