Skip to content

Commit 1ee3fb9

Browse files
authored
Fix for new version of pip (#133)
* Fix for new version of `pip`.
1 parent 7075f20 commit 1ee3fb9

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/make -f
22

33
install-dev-requirements:
4-
pip install pipenv==2020.8.13
4+
pip install pipenv==2020.11.15
55

66
install-test-requirements:
7-
pipenv lock -r > requirements.txt
87
pipenv install --dev
8+
python -c "import pipfile; pf = pipfile.load('Pipfile'); print('\n'.join(package+version for package, version in pf.data['default'].items()))" > requirements.txt
99

1010
test-python:
1111
@echo "Running Python tests"

Pipfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
python-magic = "*"
8-
six = "*"
9-
decorator = "*"
10-
urllib3 = "*"
11-
http-parser = "*"
7+
python-magic = ">=0.4.5"
8+
six = ">=1.5.0"
9+
decorator = ">=4.0.0"
10+
urllib3 = ">=1.25.3"
11+
http-parser = ">=0.9.0"
1212

1313
[dev-packages]
1414
pre-commit = "*"
@@ -23,6 +23,8 @@ pook = "*"
2323
flake8 = "*"
2424
twine = "*"
2525
anaconda-client = "*"
26+
pipfile = "*"
27+
wheel = "*"
2628

2729
[requires]
2830
python_version = "3.8"

mocket/__init__.py

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

88
__all__ = ("mocketize", "Mocket", "MocketEntry", "Mocketizer")
99

10-
__version__ = "3.9.3"
10+
__version__ = "3.9.4"

0 commit comments

Comments
 (0)