Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ RUN pyenv install 3.6.10
RUN pyenv install 3.7.6
RUN pyenv install 3.8.1
RUN pyenv install 3.9.1
RUN pyenv global 3.9.1 3.8.1 3.7.6 3.6.10 2.7.17
RUN pyenv install 3.10.9
RUN pyenv install 3.11.1
RUN pyenv global 3.11.1 3.10.9 3.9.1 3.8.1 3.7.6 3.6.10 2.7.17

## run tests

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ easy_install omise
The Omise Python client officially supports the following Python versions:

* Python 2.7
* Python 3.6
* Python 3.7
* Python 3.8
* Python 3.9
* Python 3.10
* Python 3.11

Any versions not listed here _may_ work but they are not automatically tested.

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 = py27, py36, py37, py38, py39
envlist = py27, py37, py38, py39, py310, py311

[testenv]
commands = python setup.py test -q