2013-02-18 23:23:44 +01:00
|
|
|
*.class
|
2011-07-29 01:11:56 +02:00
|
|
|
*.pyc
|
|
|
|
*.pyo
|
|
|
|
*.o
|
|
|
|
*.so
|
|
|
|
*.os
|
|
|
|
*.pyd
|
|
|
|
*.elc
|
|
|
|
*~
|
|
|
|
.*.swp
|
|
|
|
.*.swo
|
|
|
|
.*.swn
|
|
|
|
.~
|
|
|
|
.DS_Store
|
|
|
|
.ropeproject
|
|
|
|
ID
|
|
|
|
__pycache__/
|
2011-07-29 02:02:28 +02:00
|
|
|
/build/
|
|
|
|
/dist/
|
2015-09-17 19:58:22 +02:00
|
|
|
/*.egg*
|
2011-07-29 02:02:28 +02:00
|
|
|
/MANIFEST
|
2011-07-29 03:14:09 +02:00
|
|
|
/README.html
|
2011-08-01 22:39:16 +02:00
|
|
|
/pypi-server-standalone.py
|
2014-11-14 01:11:34 +01:00
|
|
|
/.project
|
|
|
|
/.pydevproject
|
2011-08-30 02:37:25 +02:00
|
|
|
/.tox/
|
2014-11-14 01:11:34 +01:00
|
|
|
/*.egg-info/
|
2015-09-11 16:45:29 +02:00
|
|
|
/.standalone
|
2013-01-04 02:09:11 +01:00
|
|
|
/.coverage
|
|
|
|
/htmlcov/
|
|
|
|
/.installed.cfg
|
|
|
|
/develop-eggs/
|
|
|
|
/eggs/
|
|
|
|
/parts/
|
2015-09-19 02:36:43 +02:00
|
|
|
/.cache/
|
2014-11-14 12:07:11 +01:00
|
|
|
/.settings/
|
Update Tests for New Twine
* Updated .travis.yml to fix PEP 440 warnings
* Fixed twine calls
We were getting test failures on multiple branches in
`test_server.py`. I first investigated a warning message
popping up in every test run:
```
PEP440Warning,
/home/travis/virtualenv/python3.5.2/lib/python3.5/site-packages/pkg_resources/__init__.py:2510: PEP440Warning: 'setuptools (git-0.4.0)' is being parsed as a legacy, non PEP 440, version. You may find odd behavior and sort order. In particular it will be sorted as less than 0.0. It is recommend to migrate to PEP 440 compatible versions.
```
Moving the installation of setuptools, pip, sphinx, and tox
into the `install` key for Travis resolved that issue, but
`test_server.py` tests were still failing. It turns out that
Twine 1.7.0 added support for SSL cert specification and,
in the process, changed the call signature for the `upload`
and `register` internal methods.
This PR fixes the calls so that they align with Twine's new
function signature. Note that tests now fail on Twine <1.7.0,
so I have also updated the dev requirements file.
2016-07-17 20:40:06 +02:00
|
|
|
|
|
|
|
# IDE stuff
|
|
|
|
.idea/
|