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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2
version: 3
jobs:
build:
docker:
- image: circleci/python:3.6-jessie
- image: circleci/python:3.11

working_directory: ~/repo

Expand Down
2 changes: 1 addition & 1 deletion compiledb/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
from subprocess import PIPE

from shutilwhich import which
from shutil import which

from compiledb.utils import popen

Expand Down
1 change: 0 additions & 1 deletion requirements-devel.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
attrs==18.1.0
bashlex==0.12
click==7.0
shutilwhich==1.1.0
enum34==1.1.6
more-itertools==4.1.0
pluggy==0.6.0
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,15 @@
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent'
],
keywords='compilation-database clang c cpp makefile rtags completion',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'click',
'bashlex',
'shutilwhich'
],
extras_require={
'dev': [],
Expand Down
2 changes: 1 addition & 1 deletion 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]
envlist = py27,py36,lint
envlist = py311,lint

[pycodestyle]
ignore = E226, W504
Expand Down