We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e5a17b commit 3007215Copy full SHA for 3007215
.github/workflows/release.yml
@@ -42,18 +42,22 @@ jobs:
42
strategy:
43
matrix:
44
include:
45
+ - { os: ubuntu-latest, python: 3.9, arch: x64 }
46
- { os: ubuntu-latest, python: 3.8, arch: x64 }
47
- { os: ubuntu-latest, python: 3.7, arch: x64 }
48
- { os: ubuntu-latest, python: 3.6, arch: x64 }
49
50
+ - { os: macos-latest, python: 3.9, arch: x64 }
51
- { os: macos-latest, python: 3.8, arch: x64 }
52
- { os: macos-latest, python: 3.7, arch: x64 }
53
- { os: macos-latest, python: 3.6, arch: x64 }
54
55
+ - { os: windows-latest, python: 3.9, arch: x64 }
56
- { os: windows-latest, python: 3.8, arch: x64 }
57
- { os: windows-latest, python: 3.7, arch: x64 }
58
- { os: windows-latest, python: 3.6, arch: x64 }
59
60
+ - { os: windows-latest, python: 3.9, arch: x86 }
61
- { os: windows-latest, python: 3.8, arch: x86 }
62
- { os: windows-latest, python: 3.7, arch: x86 }
63
- { os: windows-latest, python: 3.6, arch: x86 }
setup.cfg
@@ -18,6 +18,7 @@ classifiers =
18
Programming Language :: Python :: 3.6
19
Programming Language :: Python :: 3.7
20
Programming Language :: Python :: 3.8
21
+ Programming Language :: Python :: 3.9
22
23
[options]
24
zip_safe = False
0 commit comments