Skip to content

Commit

Permalink
Update CI Python version slots and classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Sep 5, 2022
1 parent 06f1519 commit 05b18b9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
# This avoids having duplicate builds for a pull request
push:
branches:
- master
- master
pull_request:
branches:
- master
- master

jobs:
smoke:
Expand All @@ -20,12 +20,12 @@ jobs:
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['2.7', '3.5', '3.8']
PYTHON_VERSION: ['2.7', '3.7', '3.10']
steps:
- name: Checkout branch
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Install Conda
uses: goanpeca/setup-miniconda@v1
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
python-version: ${{ matrix.PYTHON_VERSION }}
Expand Down Expand Up @@ -65,12 +65,12 @@ jobs:
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['3.6', '3.7']
PYTHON_VERSION: ['3.8', '3.9']
steps:
- name: Checkout branch
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Install Conda
uses: goanpeca/setup-miniconda@v1
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
python-version: ${{ matrix.PYTHON_VERSION }}
Expand Down Expand Up @@ -106,12 +106,12 @@ jobs:
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['2.7', '3.5', '3.6', '3.7', '3.8']
PYTHON_VERSION: ['2.7', '3.7', '3.8', '3.9', '3.10']
steps:
- name: Checkout branch
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Install Conda
uses: goanpeca/setup-miniconda@v1
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
python-version: ${{ matrix.PYTHON_VERSION }}
Expand Down Expand Up @@ -147,12 +147,12 @@ jobs:
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ['2.7', '3.5', '3.6', '3.7', '3.8']
PYTHON_VERSION: ['2.7', '3.7', '3.8', '3.9', '3.10']
steps:
- name: Checkout branch
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Install Conda
uses: goanpeca/setup-miniconda@v1
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: test
python-version: ${{ matrix.PYTHON_VERSION }}
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ def get_description():
'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',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
),
Expand Down

0 comments on commit 05b18b9

Please sign in to comment.