Skip to content

Commit e6a611b

Browse files
authored
Merge pull request #4206 from Yelp/robj/py310-requires
fix python version references
2 parents 02b0071 + f3489da commit e6a611b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/source/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Running The Tests
77
Unit Tests
88
^^^^^^^^^^
99

10-
Python 3.7 and virtualenv are required for running the unit tests. You can simply run
10+
Python 3.10 and virtualenv are required for running the unit tests. You can simply run
1111
``make test`` to execute them.
1212

1313
This will build a virtualenv with the required python packages, then run the tests
@@ -16,7 +16,7 @@ written in the ``tests`` directory.
1616
Integration Tests
1717
^^^^^^^^^^^^^^^^^
1818

19-
Python 3.7, virtualenv, and Docker are required to run the integration test suite.
19+
Python 3.10, virtualenv, and Docker are required to run the integration test suite.
2020
You can run ``make itest`` to execute them.
2121

2222
Example Cluster

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_install_requires():
3737
description="Tools for Yelps SOA infrastructure",
3838
packages=find_packages(exclude=("tests*", "scripts*")),
3939
include_package_data=True,
40-
python_requires=">=3.9.0",
40+
python_requires=">=3.10.0",
4141
install_requires=get_install_requires(),
4242
scripts=[
4343
"paasta_tools/apply_external_resources.py",

0 commit comments

Comments
 (0)