kennethreitz
89c3353ecc
mock
2017-05-29 14:48:16 -04:00
kennethreitz
b13c300a22
requirements
2017-05-29 14:45:10 -04:00
kennethreitz
9a35cfe900
Merge pull request #370 from kennethreitz/fixing_editing
...
Fixing editing
2017-05-25 09:16:13 -07:00
kennethreitz
1e8967e4d4
Merge branch 'master' into fixing_editing
2017-05-25 12:10:11 -04:00
Nate Prewitt
5b47579bb4
test normalized output in Pipfile.lock
2017-05-25 09:50:45 -06:00
Nate Prewitt
ec02cca602
speed up proper_case using pypi warehouse JSON api
2017-05-21 23:40:17 -07:00
Nate Prewitt
71c24367b1
remove appdirs
2017-05-21 23:36:57 -07:00
kennethreitz
4bdf4394ff
progress
2017-05-21 20:07:00 -07:00
Nate Prewitt
ea22a84bd3
add capture for editable
2017-05-21 18:29:19 -07:00
Nate Prewitt
e77f23a958
Merge pull request #367 from nonylene/insert-vendor-path
...
Use sys.path.insert(1, v_path) instead of sys.path.append(v_path)
2017-05-19 06:58:43 -07:00
nonylene
8d98a751a4
use sys.path.insert(1, v_path) instead of sys.path.append(v_path)
...
packages under vendor/ should be used than that installed by pip.
2017-05-19 14:21:02 +09:00
Nate Prewitt
41178eeec0
updating HISTORY
2017-05-17 14:35:45 -07:00
Nate Prewitt
df9160c173
Merge pull request #364 from c17r/fix-extra-pinned-version
...
handle package[extra]==version properly
2017-05-17 14:34:21 -07:00
Christian Sauer
d60b42d147
handle package[extra]==version properly
...
Previously doing `pipenv install "django-rest-auth[with_social]==0.8.2` would
lose the extra information and if you edited the Pipfile by hand to
```
[[source]]
url = "https://pypi.python.org/simple "
verify_ssl = true
[packages.django-rest-auth]
version = "==0.8.2"
extras = [ "with_social",]
```
`pipenv update` would break with a malformed pip command.
2017-05-17 15:29:27 -04:00
kennethreitz
31b4133253
Merge branch 'master' of github.com:kennethreitz/pipenv
2017-05-17 09:56:11 -04:00
kennethreitz
fd7725830c
skip virtualenv instructions when --system is being used
2017-05-17 09:56:00 -04:00
Nate Prewitt
fa02aa1724
v4.0.1
v4.0.1
2017-05-16 19:02:13 -06:00
Nate Prewitt
b72f2e56b0
We no longer need to lock for every build
2017-05-16 18:38:36 -06:00
Nate Prewitt
e04a7766a3
pin Sphinx to a 2.6 compatible version for now
2017-05-16 18:36:36 -06:00
kennethreitz
20682cdf5d
Merge pull request #359 from girasquid/patch-1
...
Fix typo
2017-05-16 15:02:28 -04:00
Luke Hutscal
0c373ece2a
Fix typo
2017-05-16 15:01:25 -04:00
kennethreitz
c7b503fda3
Update README.rst
2017-05-16 12:06:15 -04:00
kennethreitz
c3a059258a
Update README.rst
2017-05-16 12:05:25 -04:00
kennethreitz
7d71ebf42e
Update README.rst
2017-05-16 12:03:06 -04:00
kennethreitz
8753f94968
Update README.rst
2017-05-16 12:02:25 -04:00
kennethreitz
3fc1b79ab9
Update README.rst
2017-05-16 11:59:45 -04:00
kennethreitz
21c41f2c9b
Update README.rst
2017-05-16 11:53:24 -04:00
kennethreitz
262ca84aab
Update index.rst
2017-05-16 11:53:06 -04:00
kennethreitz
4a9fe82fa1
no longer experimental
2017-05-16 11:52:11 -04:00
kennethreitz
933e668d7f
Update README.rst
2017-05-16 11:51:20 -04:00
kennethreitz
88f0ef8d11
Update README.rst
2017-05-16 11:50:57 -04:00
kennethreitz
f8af61649f
v4.0.0
v4.0.0
2017-05-16 11:47:39 -04:00
kennethreitz
78442d18e7
Merge pull request #351 from kennethreitz/no-hashes
...
No hashes, default
2017-05-16 11:42:35 -04:00
Nate Prewitt
25b01059ed
Merge pull request #358 from erinxocon/patch-1
...
small sentence correction
2017-05-16 00:58:49 -06:00
Erin O'Connell
73f6515252
small sentance correction
2017-05-15 20:53:00 -06:00
Nate Prewitt
6da9f8520c
test uninstall functionality
2017-05-12 15:15:09 -06:00
kennethreitz
0b5a7a91f0
Merge pull request #350 from varunagrawal/uninstall-bugfix
...
Fix for key error when uninstalling [dev-]packages
2017-05-12 15:52:36 -04:00
kennethreitz
1b0f9f3516
new lockfile
2017-05-12 15:45:46 -04:00
kennethreitz
5593149d09
--no-hashes is now default
2017-05-12 15:45:37 -04:00
Varun Agrawal
2e9517de30
Fix for key error when uninstalling [dev-]packages
2017-05-12 12:03:21 -04:00
kennethreitz
7ba5b24a27
Merge pull request #347 from nateprewitt/fix_requirements_with_no_env
...
create Pipfile from requirements.txt without installing
2017-05-08 13:59:54 -04:00
Nate Prewitt
7318cf6815
create Pipfile from requirements.txt without installing
...
The install process is dependent upon the virtualenv existing
which isn't always the case for fresh projects. This is the most
common case this code will execute in, so we need to be able to
create the Pipfile without installing.
2017-05-08 10:12:44 -06:00
Nate Prewitt
f5f0f7125e
end Pipfile.lock with newline
2017-05-01 08:43:49 -06:00
Nate Prewitt
6d3720bb44
v3.6.2
v3.6.2
2017-04-27 11:42:52 -06:00
kennethreitz
90fe375724
document requirements.txt
2017-04-27 13:41:41 -04:00
kennethreitz
3f6e94c540
updated version
2017-04-27 13:39:16 -04:00
Nate Prewitt
5418e980d2
pick a 2.6 compatible dependency for test
2017-04-27 11:04:26 -06:00
Nate Prewitt
a27cc9db3f
fix appveyor tests failing on emoji printing
2017-04-27 10:22:18 -06:00
Nate Prewitt
692ea4dea5
Merge pull request #333 from mhubig/mhubig-patch-1
...
Fixes Typo ...
2017-04-27 07:36:44 -06:00
Nate Prewitt
7f7464f858
test uninstall functionality
2017-04-27 07:31:49 -06:00