Skip to content

Commit 33f4283

Browse files
committed
lint cython code
1 parent f447278 commit 33f4283

6 files changed

Lines changed: 432 additions & 278 deletions

File tree

pip-freeze.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Cython==0.29.26
33
distlib==0.3.4
44
filelock==3.4.2
55
iniconfig==1.1.1
6-
-e git+https://github.com/escherba/python-metrohash@dc510c29023965895fa61ec19e3c40c6292fc514#egg=metrohash
6+
-e git+https://github.com/escherba/python-metrohash@f44727818a7218a25bc319215a4ff461f1ca7f4b#egg=metrohash
77
packaging==21.3
88
platformdirs==2.4.1
99
pluggy==1.0.0

python.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ release: env build_ext ## upload package to PyPI
3939
.PHONY: shell
4040
shell: build_ext ## open Python shell within the virtualenv
4141
@echo "Using $(PYVERSION)"
42-
$(PYENV) $(ENV_EXTRA) python
42+
$(PYENV) python
4343

4444
.PHONY: build_ext
4545
build_ext: $(EXTENSION) ## build C extension(s)
@@ -82,7 +82,7 @@ env/bin/activate: setup.py requirements.txt
8282
test -f $@ || virtualenv $(VENV_OPTS) env
8383
export SETUPTOOLS_USE_DISTUTILS=stdlib; $(PYENV) curl https://bootstrap.pypa.io/ez_setup.py | $(INTERPRETER)
8484
$(PIP) install -U pip
85-
export SETUPTOOLS_USE_DISTUTILS=stdlib; $(PIP) install -r requirements.txt
85+
$(PIP) install -r requirements.txt
8686
$(PIP) install -e .
8787
$(PIP) freeze > pip-freeze.txt
8888
touch $@

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package_dir =
44

55
[metadata]
66
version = attr:cityhash.__version__
7-
description-file = README.rst
7+
description_file = README.rst
88

99
[tool:pytest]
1010
addopts = --doctest-modules

0 commit comments

Comments
 (0)