Skip to content

Commit

Permalink
Prepare for 0.10.0 release (#40)
Browse files Browse the repository at this point in the history
* Rename workflow file to match intention
* Add testing for Python 3.9
* Remove testing for Python 3.5 (EOL)
* Update CHANGELOG.md
  • Loading branch information
Daniel Fowler authored Jan 27, 2021
1 parent f8e90b3 commit f8c4ca2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
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.5, 3.6, 3.7, 3.8]
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Changelog

## [0.10.0] - 2021-01-27

* [Added] Add update method for Account (https://github.com/omise/omise-python/pull/34)
* [Added] Add destroy method for Link (https://github.com/omise/omise-python/pull/39)
* [Added] Add Card.retrieve(customer_id, card_id) method (https://github.com/omise/omise-python/pull/37)
* [Added] Add testing for 3.9 (https://github.com/omise/omise-python/pull/40)
* [Removed] Remove testing for 3.5 (EOL) (https://github.com/omise/omise-python/pull/40)

## [0.9.0] - 2020-08-03

Please upgrade to this version before 20 October 2020.
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ RUN apt-get update && apt-get install -y curl git-core make build-essential libr
RUN curl https://pyenv.run | bash
ENV PATH="/root/.pyenv/bin:$PATH"
RUN pyenv install 2.7.17
RUN pyenv install 3.5.9
RUN pyenv install 3.6.10
RUN pyenv install 3.7.6
RUN pyenv install 3.8.1
RUN pyenv global 3.8.1 3.7.6 3.6.10 3.5.9 2.7.17
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 tests

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

* Python 2.7
* Python 3.5
* Python 3.6
* Python 3.7
* Python 3.8
* Python 3.9

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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
setup(name='omise',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.9.0',
version='0.10.0',
description='Omise Python client',
author='Omise',
author_email='support@omise.co',
Expand All @@ -34,9 +34,9 @@
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
])
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, py35, py36, py37, py38
envlist = py27, py36, py37, py38, py39

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

0 comments on commit f8c4ca2

Please sign in to comment.