Skip to content

Commit

Permalink
Merge pull request #109 from blink1073/fix-ci
Browse files Browse the repository at this point in the history
Bump supported python versions to 3.7-3.10
  • Loading branch information
Steven Silvester authored Oct 18, 2021
2 parents 047680f + a731aa7 commit 5c96c36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.6", "3.9"]
python_version: ["3.7", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
architecture: 'x64'
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.6
python_requires = >=3.7
install_requires =
packaging
tomlkit
Expand Down

0 comments on commit 5c96c36

Please sign in to comment.