Skip to content

Commit 7bfbce6

Browse files
authored
Support for Python 3.10 in testing (#238)
* Add support for Python 3.10 * Update copyright to 2022 * Bump version to 5.3.0 * Add Python 3.10 to the README
1 parent 20f1d93 commit 7bfbce6

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v2
1818
with:
19-
python-version: 3.9
19+
python-version: '3.10'
2020
- name: Install dependencies
2121
run: |
2222
pip install --upgrade pip
@@ -32,7 +32,7 @@ jobs:
3232
max-parallel: 8
3333
matrix:
3434
os: [ubuntu-latest, macos-latest, windows-latest]
35-
python-version: [3.6, 3.7, 3.8, 3.9]
35+
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
3636

3737
steps:
3838
- name: Set up Python ${{ matrix.python-version }} x64

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v2
2323
with:
24-
python-version: 3.9
24+
python-version: '3.10'
2525

2626
- name: Install dependencies
2727
run: |

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2016-2021 Grant Jenks
1+
Copyright 2016-2022 Grant Jenks
22

33
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
44
this file except in compliance with the License. You may obtain a copy of the

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ Features
7777
- Thread-safe and process-safe
7878
- Supports multiple eviction policies (LRU and LFU included)
7979
- Keys support "tag" metadata and eviction
80-
- Developed on Python 3.9
81-
- Tested on CPython 3.6, 3.7, 3.8, 3.9
80+
- Developed on Python 3.10
81+
- Tested on CPython 3.6, 3.7, 3.8, 3.9, 3.10
8282
- Tested on Linux, Mac OS X, and Windows
8383
- Tested using GitHub Actions
8484

@@ -387,7 +387,7 @@ Reference
387387
License
388388
-------
389389

390-
Copyright 2016-2021 Grant Jenks
390+
Copyright 2016-2022 Grant Jenks
391391

392392
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
393393
this file except in compliance with the License. You may obtain a copy of the

diskcache/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
pass
6262

6363
__title__ = 'diskcache'
64-
__version__ = '5.2.1'
65-
__build__ = 0x050201
64+
__version__ = '5.3.0'
65+
__build__ = 0x050300
6666
__author__ = 'Grant Jenks'
6767
__license__ = 'Apache 2.0'
68-
__copyright__ = 'Copyright 2016-2021 Grant Jenks'
68+
__copyright__ = 'Copyright 2016-2022 Grant Jenks'

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = 'DiskCache'
23-
copyright = '2021, Grant Jenks'
23+
copyright = '2022, Grant Jenks'
2424
author = 'Grant Jenks'
2525

2626
# The full version, including alpha/beta/rc tags

0 commit comments

Comments
 (0)