Skip to content

Commit

Permalink
Add Python 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
rennerocha committed Jun 25, 2022
1 parent 3539ee4 commit 6550156
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

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:
- uses: actions/checkout@v2
Expand All @@ -27,10 +27,10 @@ jobs:
- name: Run tests
run: tox -e py
- name: Run docs and formatting tests
if: ${{ matrix.python-version == 3.9 }}
if: ${{ matrix.python-version == 3.10 }}
run: |
tox -e docs
tox -e pep8
- name: Upload coverage.xml to codecov
if: ${{ matrix.python-version == 3.9 }}
if: ${{ matrix.python-version == 3.10 }}
uses: codecov/codecov-action@v1
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Spidermon is an extension for Scrapy spiders. The package provides useful tools
Requirements
============

* Python 3.6, Python 3.7, Python 3.8 or Python 3.9
* Python Version: 3.6, 3.7, 3.8, 3.9 or 3.10

Install
=======
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Monitoring",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39
envlist = py36,py37,py38,py39,py310
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 6550156

Please sign in to comment.