Skip to content
Open
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 .ci-before-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -ex

python -m pip install --upgrade pip
pip install -r requirements_test.txt && python setup.py develop
pip install -r requirements_test.txt && pip install -e .

if [ "$STEP" != "tests" ]; then
exit 0
Expand Down
2 changes: 1 addition & 1 deletion .ci-runs-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env
if [ "$STEP" = "tests" ]; then
py.test --version
export PYTHONPATH=.
python setup.py develop
pip install -e .
py.test --cov=bmemcached
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@ def read(filename):
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"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 :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=[
"six",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist = py27,py34,py35,py36,py37,py38,py39,py310
envlist = py38,py39,py310,py311,py312
[testenv]
deps = -rrequirements_test.txt
commands = python setup.py develop
commands = pip install -e .
py.test -s
flake8
Loading