<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git/requirements, branch 6.4.4</title>
<subtitle>github.com: nedbat/coveragepy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/'/>
<entry>
<title>build: make upgrade (with hashes)</title>
<updated>2022-08-15T14:29:21+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-08-15T12:37:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=66ddb0b6b44a9da1e793cd55cb5430254a2ff761'/>
<id>66ddb0b6b44a9da1e793cd55cb5430254a2ff761</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: pin windows-only transitive dependencies</title>
<updated>2022-08-15T14:28:12+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-08-15T12:19:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=1dba0305a3d7248ad64e4a21d4ac56c92277883c'/>
<id>1dba0305a3d7248ad64e4a21d4ac56c92277883c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: don't install multiple .pip files</title>
<updated>2022-08-15T14:09:40+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-08-15T11:25:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=4eee7dc0962e27ed4598e226a065eb2f825532a6'/>
<id>4eee7dc0962e27ed4598e226a065eb2f825532a6</id>
<content type='text'>
If .pip files are pip-compile'd separately, they can have different
pinned versions.  Then when installed together, pip can't resolve the
difference.  Instead, pip-compile multiple .in files to produce one .pip
file that is installed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If .pip files are pip-compile'd separately, they can have different
pinned versions.  Then when installed together, pip can't resolve the
difference.  Instead, pip-compile multiple .in files to produce one .pip
file that is installed.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: make upgrade</title>
<updated>2022-08-15T14:09:40+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-08-15T11:18:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=a7498674688b7d954fb8789f599e07117b4d49ce'/>
<id>a7498674688b7d954fb8789f599e07117b4d49ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "build: switch to hashed dev dependencies"</title>
<updated>2022-08-11T12:02:24+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-08-11T12:02:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=436c633570a5b1ec4ae37045b45555266bdb3160'/>
<id>436c633570a5b1ec4ae37045b45555266bdb3160</id>
<content type='text'>
This reverts commit 015e42af088e03c4c69068b191be9212d7808689.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 015e42af088e03c4c69068b191be9212d7808689.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: switch to hashed dev dependencies</title>
<updated>2022-08-11T11:44:29+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-08-11T11:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=015e42af088e03c4c69068b191be9212d7808689'/>
<id>015e42af088e03c4c69068b191be9212d7808689</id>
<content type='text'>
I used this tweak to the Makefile to mostly just add hashes, though some
dependencies were also upgraded, not sure why...

@@ -74,7 +74,7 @@ metasmoke:

 .PHONY: upgrade

-PIP_COMPILE = pip-compile --upgrade --allow-unsafe
+PIP_COMPILE = pip-compile --allow-unsafe --generate-hashes
 upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
 upgrade: 				## Update the *.pip files with the latest packages satisfying *.in files.
 	pip install -q -r requirements/pip-tools.pip
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I used this tweak to the Makefile to mostly just add hashes, though some
dependencies were also upgraded, not sure why...

@@ -74,7 +74,7 @@ metasmoke:

 .PHONY: upgrade

-PIP_COMPILE = pip-compile --upgrade --allow-unsafe
+PIP_COMPILE = pip-compile --allow-unsafe --generate-hashes
 upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
 upgrade: 				## Update the *.pip files with the latest packages satisfying *.in files.
 	pip install -q -r requirements/pip-tools.pip
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: make upgrade</title>
<updated>2022-06-08T11:07:28+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-06-08T11:07:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=175ef250010832fc1c3a0fbd6ef267636f496b26'/>
<id>175ef250010832fc1c3a0fbd6ef267636f496b26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: make upgrade</title>
<updated>2022-06-02T11:51:41+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-06-02T11:51:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=35cdddb4049c309c9f67812b1cb899c77bdb91e3'/>
<id>35cdddb4049c309c9f67812b1cb899c77bdb91e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: make upgrade</title>
<updated>2022-05-31T16:48:17+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-05-31T16:48:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=613191f052b8866ec5f479a612b3f8851e4702d7'/>
<id>613191f052b8866ec5f479a612b3f8851e4702d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: make upgrade</title>
<updated>2022-05-12T19:17:07+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-05-12T19:17:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=3e6ff4ff21b981a4e7aa79b02a0b80dc6ae54f06'/>
<id>3e6ff4ff21b981a4e7aa79b02a0b80dc6ae54f06</id>
<content type='text'>
Wrote this bug for pylint, because I shouldn't have to add a pragma:
https://github.com/PyCQA/pylint/issues/6592
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wrote this bug for pylint, because I shouldn't have to add a pragma:
https://github.com/PyCQA/pylint/issues/6592
</pre>
</div>
</content>
</entry>
</feed>
