Skip to content

Commit

Permalink
feat: remove python3.5, add python3.9 (#116)
Browse files Browse the repository at this point in the history
* feat: remove python3.5, add python3.9

* Bump version 1.4.2
  • Loading branch information
everpcpc authored May 20, 2021
1 parent 382ae14 commit d4190da
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Build wheels
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp27-cp27mu cp36-cp36m cp37-cp37m cp38-cp38'
python-versions: 'cp27-cp27mu cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39'
build-requirements: 'cython'
- name: Clean linux_x86_64.whl
run: rm dist/*-linux_x86_64.whl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
pyver: ["2.7", "3.6", "3.7", "3.8"]
pyver: ["2.7", "3.6", "3.7", "3.8", "3.9"]
compiler: ["gcc", "clang"]
build_type: ["Debug", "Release"]

Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
pyver: ["2.7", "3.6", "3.7", "3.8"]
pyver: ["2.7", "3.6", "3.7", "3.8", "3.9"]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions libmc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
__file__ as _libmc_so_file
)

__VERSION__ = "1.4.1"
__version__ = "v1.4.1-10-ga2080d1"
__VERSION__ = "1.4.2"
__version__ = "v1.4.2"
__author__ = "mckelvin"
__email__ = "[email protected]"
__date__ = "Thu May 20 18:37:41 2021 +0800"
__date__ = "Thu May 20 18:44:42 2021 +0800"


class Client(PyClient):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ def run_tests(self):
"Programming Language :: Python",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
Expand Down
4 changes: 2 additions & 2 deletions src/version.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package golibmc

const _Version = "v1.4.1-10-ga2080d1"
const _Version = "v1.4.2"
const _Author = "mckelvin"
const _Email = "[email protected]"
const _Date = "Thu May 20 18:37:41 2021 +0800"
const _Date = "Thu May 20 18:44:42 2021 +0800"

// Version of the package
const Version = _Version
Expand Down

0 comments on commit d4190da

Please sign in to comment.