Skip to content

Commit a646f57

Browse files
committed
Bump to 3.9 as minimum version
1 parent 6816e60 commit a646f57

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Mocking calls made to Vuforia with Python ``requests``
1313

1414
Using the mock redirects requests to Vuforia made with `requests`_ to an in-memory implementation.
1515

16-
This requires Python 3.8.5+.
16+
This requires Python 3.9+.
1717

1818
.. code:: sh
1919

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
htmlhelp_basename = 'VWSPYTHONMOCKdoc'
6565
autoclass_content = 'init'
6666
intersphinx_mapping = {
67-
'python': ('https://docs.python.org/3.8', None),
67+
'python': ('https://docs.python.org/3.9', None),
6868
'docker': ('https://docker-py.readthedocs.io/en/stable', None),
6969
}
7070
nitpicky = True

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Mocking calls made to Vuforia with Python ``requests``
88

99
pip3 install vws-python-mock
1010

11-
This requires Python 3.8+.
11+
This requires Python 3.9+.
1212

1313
.. include:: basic-example.rst
1414

docs/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Installation
55

66
pip3 install vws-python-mock
77

8-
This requires Python 3.8+.
8+
This requires Python 3.9+.

docs/source/release-process.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Outcomes
1010
Prerequisites
1111
~~~~~~~~~~~~~
1212

13-
* ``python3`` on your ``PATH`` set to Python 3.8+.
13+
* ``python3`` on your ``PATH`` set to Python 3.9+.
1414
* ``virtualenv``.
1515
* Push access to this repository.
1616
* Trust that ``master`` is ready and high enough quality for release.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ license_file = LICENSE
5656
classifiers =
5757
Operating System :: POSIX
5858
Environment :: Web Environment
59-
Programming Language :: Python :: 3.8
59+
Programming Language :: Python :: 3.9
6060
License :: OSI Approved :: MIT License
6161
Development Status :: 5 - Production/Stable
6262
url = https://vws-python-mock.readthedocs.io

src/mock_vws/_flask_server/dockerfiles/base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8-slim-buster
1+
FROM python:3.9.1-slim-buster
22
RUN apt update --yes
33
# git is needed for setuptools-scm.
44
# gcc is needed to create the wheel for backports.zoneinfo, at least on Apple

0 commit comments

Comments
 (0)