<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/psutil.git/MANIFEST.in, branch fix-win-set-debug</title>
<subtitle>github.com: giampaolo/psutil.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/'/>
<entry>
<title>pre-release</title>
<updated>2019-02-15T19:11:02+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2019-02-15T19:11:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=eda2aea6e60fe61ef31a0ebc61984f4b492ddc0e'/>
<id>eda2aea6e60fe61ef31a0ebc61984f4b492ddc0e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>set version to 5.4.7</title>
<updated>2018-08-13T23:59:34+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2018-08-13T23:59:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=da4e3598fa245fb081bba101fd9cc698c81a8033'/>
<id>da4e3598fa245fb081bba101fd9cc698c81a8033</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>revert file renaming of macos files; get them back to 'osx' prefix</title>
<updated>2018-06-29T14:37:47+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2018-06-29T14:37:47+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=1b09b5fff78f705dfb42458726ff9789c26f6f21'/>
<id>1b09b5fff78f705dfb42458726ff9789c26f6f21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename OSX to macOS (#1298)</title>
<updated>2018-06-26T23:57:36+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2018-06-26T23:57:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=2f60e997fc1c500e0c245979bbecf2761f36e820'/>
<id>2f60e997fc1c500e0c245979bbecf2761f36e820</id>
<content type='text'>
rename OSX to macOS</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
rename OSX to macOS</pre>
</div>
</content>
</entry>
<entry>
<title>pre-release</title>
<updated>2018-06-07T15:39:07+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2018-06-07T15:39:07+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=776d61024f061c47fbff5c765a619c1fd5701f5a'/>
<id>776d61024f061c47fbff5c765a619c1fd5701f5a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>771 Windows CPU count (#1257)</title>
<updated>2018-04-13T08:52:55+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2018-04-13T08:52:55+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=34e98b6e2a5739f9e633436e8cd61f3246c1091e'/>
<id>34e98b6e2a5739f9e633436e8cd61f3246c1091e</id>
<content type='text'>
* use GetLogicalProcessorInformation() to get logical cpu_count()

* return None if cpu_count() is undetermined + add mock test

* style

* factor out logical CPU num fun

* remove unused code

* psutil_get_num_cpus(): provide an option to fail on err

* add comments

* reuse get_num_cpus() function

* error out if get_num_cpus() fail

* use GetLogicalProcessorInformationEx to get phys CPU num

* on win vista/xp just return None for phys CPU count

* rename vars

* fix C compiler warnings + remove mingw workarounds

* return None if phys cpu count cant' be determined; update HISTORY

* update HISTORY

* update doc

* add WMI tests

* refactor tests

* print debug msg for cpu phys returning None on win &lt; 7

* try to fix win test

* appveyor debug

* fix typo

* adjust appveyor 64 bit versions

* debug msg

* fix for loop

* re-enable python versions

* (maybe) finally fix GetLogicalProcessorInformationEx return len
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* use GetLogicalProcessorInformation() to get logical cpu_count()

* return None if cpu_count() is undetermined + add mock test

* style

* factor out logical CPU num fun

* remove unused code

* psutil_get_num_cpus(): provide an option to fail on err

* add comments

* reuse get_num_cpus() function

* error out if get_num_cpus() fail

* use GetLogicalProcessorInformationEx to get phys CPU num

* on win vista/xp just return None for phys CPU count

* rename vars

* fix C compiler warnings + remove mingw workarounds

* return None if phys cpu count cant' be determined; update HISTORY

* update HISTORY

* update doc

* add WMI tests

* refactor tests

* print debug msg for cpu phys returning None on win &lt; 7

* try to fix win test

* appveyor debug

* fix typo

* adjust appveyor 64 bit versions

* debug msg

* fix for loop

* re-enable python versions

* (maybe) finally fix GetLogicalProcessorInformationEx return len
</pre>
</div>
</content>
</entry>
<entry>
<title>add a script to purge installation</title>
<updated>2018-03-17T10:56:47+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2018-03-17T10:56:47+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=3b0de6bf54c7ec81d704e93b0d1cd44e1c92311a'/>
<id>3b0de6bf54c7ec81d704e93b0d1cd44e1c92311a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Move tests out of package to top level directory (#1232)" (#1242)</title>
<updated>2018-03-11T16:31:35+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2018-03-11T16:31:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=2ffb0ecc5e41c5486056fcd00aca274d77858860'/>
<id>2ffb0ecc5e41c5486056fcd00aca274d77858860</id>
<content type='text'>
This reverts commit b578d2febfd35f80fcfa1ce1bdf18d44d21b1581.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit b578d2febfd35f80fcfa1ce1bdf18d44d21b1581.</pre>
</div>
</content>
</entry>
<entry>
<title>Move tests out of package to top level directory (#1232)</title>
<updated>2018-03-10T03:51:10+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-03-10T03:51:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=b578d2febfd35f80fcfa1ce1bdf18d44d21b1581'/>
<id>b578d2febfd35f80fcfa1ce1bdf18d44d21b1581</id>
<content type='text'>
Cleanly separates tests from the package itself. Prevents the tests
being installed to site-packages. Tests are still distributed with the
source distribution by MANIFEST.in.

Avoids installing tests in production environments, leading to less
total code in the environment.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cleanly separates tests from the package itself. Prevents the tests
being installed to site-packages. Tests are still distributed with the
source distribution by MANIFEST.in.

Avoids installing tests in production environments, leading to less
total code in the environment.</pre>
</div>
</content>
</entry>
<entry>
<title>update MANIFEST</title>
<updated>2017-11-12T23:26:35+00:00</updated>
<author>
<name>Giampaolo Rodola</name>
<email>g.rodola@gmail.com</email>
</author>
<published>2017-11-12T23:26:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/psutil.git/commit/?id=4d3f5ba337c5a91efa642699cc96331718889b4f'/>
<id>4d3f5ba337c5a91efa642699cc96331718889b4f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
