<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pyjwt.git/setup.py, branch bionic</title>
<subtitle>github.com: progrium/pyjwt.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/'/>
<entry>
<title>Simplify `python_requires` (#478)</title>
<updated>2020-03-24T12:16:25+00:00</updated>
<author>
<name>Michael</name>
<email>michael-k@users.noreply.github.com</email>
</author>
<published>2020-03-24T12:16:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=4de9b64effc7100ccc15cc6836c8e3203ab193c0'/>
<id>4de9b64effc7100ccc15cc6836c8e3203ab193c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support of python 3.8 (#452)</title>
<updated>2019-12-27T16:16:29+00:00</updated>
<author>
<name>Bastien Vallet</name>
<email>bastien.vallet@gmail.com</email>
</author>
<published>2019-12-27T16:16:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=09f2e20c6621b531be37392a514d8805f9804723'/>
<id>09f2e20c6621b531be37392a514d8805f9804723</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Python 2.7 compatibility (#457)</title>
<updated>2019-11-13T02:39:43+00:00</updated>
<author>
<name>Bastien Vallet</name>
<email>bastien.vallet@gmail.com</email>
</author>
<published>2019-11-13T02:39:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=8c93b2a314788798680febadfc5cac05b8dee5a5'/>
<id>8c93b2a314788798680febadfc5cac05b8dee5a5</id>
<content type='text'>
* Remove py27 support

* [py27] Remove useless compatibility files
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Remove py27 support

* [py27] Remove useless compatibility files
</pre>
</div>
</content>
</entry>
<entry>
<title>DX Tweaks (#450)</title>
<updated>2019-10-22T02:38:34+00:00</updated>
<author>
<name>José Padilla</name>
<email>jpadilla@webapplicate.com</email>
</author>
<published>2019-10-22T02:38:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=11ac89474b1179925c76450fcc4b3d2042c45f19'/>
<id>11ac89474b1179925c76450fcc4b3d2042c45f19</id>
<content type='text'>
* Setup pre-commit hooks

* Run initial `tox -e lint`

* Fix package name

* Fix .travis.yml
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Setup pre-commit hooks

* Run initial `tox -e lint`

* Fix package name

* Fix .travis.yml
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove setup.py test command in favor of pytest and tox (#442)</title>
<updated>2019-10-06T23:09:34+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-10-06T23:09:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=3a20892442b34c754b26550e05f7f856fb008c94'/>
<id>3a20892442b34c754b26550e05f7f856fb008c94</id>
<content type='text'>
Using pytest and tox directly is simpler and more conventional then
going through setup.py. Using setup.py installs packages as eggs where
as tox uses the more typical pip.

Overall simplifies setup.py.

Fixes #415</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Using pytest and tox directly is simpler and more conventional then
going through setup.py. Using setup.py installs packages as eggs where
as tox uses the more typical pip.

Overall simplifies setup.py.

Fixes #415</pre>
</div>
</content>
</entry>
<entry>
<title>Pass python_requires argument to setuptools (#440)</title>
<updated>2019-09-28T20:32:04+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-09-28T20:32:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=12eaf0057e431e77ddba34715d138986e7039030'/>
<id>12eaf0057e431e77ddba34715d138986e7039030</id>
<content type='text'>
Helps pip decide what version of the library to install. This is
especially useful when removing support for EOL Python versions.

https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires

&gt; If your project only runs on certain Python versions, setting the
&gt; python_requires argument to the appropriate PEP 440 version specifier
&gt; string will prevent pip from installing the project on other Python
&gt; versions.

https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords

&gt; python_requires
&gt;
&gt; A string corresponding to a version specifier (as defined in PEP 440)
&gt; for the Python version, used to specify the Requires-Python defined in
&gt; PEP 345.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Helps pip decide what version of the library to install. This is
especially useful when removing support for EOL Python versions.

https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires

&gt; If your project only runs on certain Python versions, setting the
&gt; python_requires argument to the appropriate PEP 440 version specifier
&gt; string will prevent pip from installing the project on other Python
&gt; versions.

https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords

&gt; python_requires
&gt;
&gt; A string corresponding to a version specifier (as defined in PEP 440)
&gt; for the Python version, used to specify the Requires-Python defined in
&gt; PEP 345.</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer https:// links where available (#439)</title>
<updated>2019-09-28T20:30:18+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-09-28T20:30:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=6834f9e3b260814081bbe472498c45267f6711bc'/>
<id>6834f9e3b260814081bbe472498c45267f6711bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Run mypy with tox (#421)</title>
<updated>2019-05-05T01:58:44+00:00</updated>
<author>
<name>José Padilla</name>
<email>jpadilla@webapplicate.com</email>
</author>
<published>2019-05-05T01:58:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=2c8bfe502a5fc3803e6334c4914016bfa805f181'/>
<id>2c8bfe502a5fc3803e6334c4914016bfa805f181</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix pytest and pinned test dependencies</title>
<updated>2018-12-06T12:32:27+00:00</updated>
<author>
<name>José Padilla</name>
<email>jpadilla@webapplicate.com</email>
</author>
<published>2018-12-06T12:32:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=b65e1ac6dc4d11801f3642eaab34ae6a54162c18'/>
<id>b65e1ac6dc4d11801f3642eaab34ae6a54162c18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Pin test requirements</title>
<updated>2018-11-02T11:02:13+00:00</updated>
<author>
<name>José Padilla</name>
<email>jpadilla@webapplicate.com</email>
</author>
<published>2018-11-02T11:02:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=b616107dab3d977771cf3568eff6be5150f69037'/>
<id>b616107dab3d977771cf3568eff6be5150f69037</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
