Skip to content

Commit 00e1832

Browse files
authored
Update Python versions up through 3.10 (#1398)
* Update Python versions up through 3.10 in setup.py * Bump Python versions up to 3.10 in CI workflow * Typo: run weekly, not weakly! * Update readme regarding Python versions * Quote Python versions to prevent 3.10 from becoming 3.1 * Bump readme versions to 3.8, 3.9, and 3.10
1 parent 49d660d commit 00e1832

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
pull_request:
6-
# Run weakly at 00:00 on Sunday.
6+
# Run weekly at 00:00 on Sunday.
77
schedule:
88
- cron: '0 0 * * 0'
99

@@ -14,7 +14,7 @@ jobs:
1414
max-parallel: 4
1515
matrix:
1616
os: [ubuntu-latest, windows-latest]
17-
python-version: [3.6, 3.7, 3.8]
17+
python-version: ["3.8", "3.9", "3.10"]
1818

1919
steps:
2020
- uses: actions/checkout@v1

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ a peer reviewed paper introducing the library (22 authors).
7171
Installation
7272
------------
7373

74-
The library requires Python 3.6 or greater.
74+
The library is tested on Python versions 3.8, 3.9, and 3.10.
7575

7676
The simplest way to install is::
7777

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
include_package_data=True,
3030
package_data={"": ["axelrod/data/*"]},
3131
classifiers=[
32-
"Programming Language :: Python :: 3.6",
33-
"Programming Language :: Python :: 3.7",
3432
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.9",
34+
"Programming Language :: Python :: 3.10",
3535
"Programming Language :: Python :: 3 :: Only",
3636
],
3737
python_requires=">=3.6",

0 commit comments

Comments
 (0)