Skip to content

Commit

Permalink
[CLIENT-1877] Remove support for Python 3.6 in version 8.0 (#306)
Browse files Browse the repository at this point in the history
* Remove references to 3.6 in markdown files, tox.ini, .build.yml, pyproject.toml
  • Loading branch information
juliannguyen4 authored Nov 9, 2022
1 parent 792f2c3 commit 75bbeec
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ container:
build:
- name: build
environment:
PYTHONS: /opt/python/cp36-cp36m/bin,/opt/python/cp37-cp37m/bin,/opt/python/cp38-cp38/bin,/opt/python/cp39-cp39/bin
PYTHONS: /opt/python/cp37-cp37m/bin,/opt/python/cp38-cp38/bin,/opt/python/cp39-cp39/bin
script:
- scripts/manylinux2014build.sh
artifact:
Expand Down
5 changes: 0 additions & 5 deletions BUILD.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# Manually Building the Python Client for Aerospike

The Python client for Aerospike works with Python 3.6, 3.7, 3.8, 3.9 running on
**64-bit** macOS 10.15+ and Linux.
Python 3.6 hits [End of Life](https://endoflife.date/python) on December 23rd,
2021, and is now deprecated.

First clone this repository to get the necessary files.

`git clone --recurse-submodules ...`
Expand Down
5 changes: 1 addition & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,10 @@ Aerospike Python Client
Compatibility
-------------

The Python client for Aerospike works with Python 3.6, 3.7, 3.8, 3.9 running on
The Python client for Aerospike works with Python 3.7, 3.8, 3.9 running on
**64-bit** macOS 10.15+ and Linux (RHEL/CentOS 7 & 8; Debian 8, 9 & 10; Ubuntu
18.04 & 20.04).

Python 3.6 hits `End of Life <https://endoflife.date/python>`__ on December 23rd,
2021, and is now deprecated.

**NOTE:** Aerospike Python client 5.0.0 and up MUST be used with Aerospike server 4.9 or later.
If you see the error "-10, ‘Failed to connect’", please make sure you are using server 4.9 or later.

Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 1 addition & 1 deletion test/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
skipsdist = True
envlist = py36, py37, py38, py39
envlist = py37, py38, py39
[testenv]
commands =
pip install --find-links=local/wheels --no-index aerospike
Expand Down

0 comments on commit 75bbeec

Please sign in to comment.