Skip to content

Commit

Permalink
added python 3.10 in setup and ci
Browse files Browse the repository at this point in the history
  • Loading branch information
davebulaval committed Nov 1, 2021
1 parent 8cd0971 commit 351d696
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9' ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]

steps:
- name: Set deploy environment variable
run: |
# NOTIFICATION_RELEASE_BUILD is also used in setup.py
if [ $GITHUB_REF == "refs/heads/stable" ] && \
[ $GITHUB_EVENT_NAME == "push" ] && \
[ ${{ matrix.python-version }} == "3.9" ]; then
[ ${{ matrix.python-version }} == "3.10" ]; then
echo "NOTIFICATION_RELEASE_BUILD=1" >> $GITHUB_ENV
else
echo "NOTIFICATION_RELEASE_BUILD=0" >> $GITHUB_ENV
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
Expand Down

0 comments on commit 351d696

Please sign in to comment.