Skip to content

Commit

Permalink
Newer python.
Browse files Browse the repository at this point in the history
Test in both Python 3.9 and 3.11.
  • Loading branch information
blockjesper committed Apr 17, 2024
1 parent 0769f4e commit 1a6145a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# When updating dependencies here:
# - Install pip-tools with `pip install pip-tools`
# - Use `pip-compile requirements.in` to update transitive dependency versions in requirements.txt
Sphinx==7.2.6
Sphinx==7.3.5
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
]

CODE_QUALITY_REQ = [
'prospector==1.2.0', # Newer versions require Python 3
'prospector==1.3.0',
]

TESTS_REQ = [
Expand All @@ -37,7 +37,7 @@
"pytest-html==1.22.0", # Newer versions require Python 3
"pytest-cov==2.7.1",
"pytest-helpers-namespace==2019.1.8",
'pytest==4.6.11', # Newer versions require Python 3
'pytest==8.1.1',
]


Expand Down
2 changes: 1 addition & 1 deletion tests/k8s/test_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ def _create_mock_response():


def _uri(namespace, name=""):
return "/apis/batch/v1/namespaces/{namespace}/jobs".format(name=name, namespace=namespace)
return "/apis/batch/v1/namespaces/{namespace}/jobs".format(namespace=namespace)
2 changes: 1 addition & 1 deletion tests/k8s/test_resourcequota.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ def _create_default_resourcequota():


def _uri(namespace, name=""):
return "/api/v1/namespaces/{namespace}/resourcequotas".format(name=name, namespace=namespace)
return "/api/v1/namespaces/{namespace}/resourcequotas".format(namespace=namespace)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38,py39
envlist = py39,py311
requires = setuptools
virtualenv
skip_missing_interpreters=True
Expand Down

0 comments on commit 1a6145a

Please sign in to comment.