This website requires JavaScript.
Explore
Help
Register
Sign In
django
/
daphne
Watch
1
Star
1
Fork
0
You've already forked daphne
mirror of
https://github.com/django/daphne.git
synced
2024-11-22 07:56:34 +03:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
7d1123d39a
daphne
/
.gitignore
7 lines
48 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Initial commit
2015-12-23 20:05:15 +03:00
*.egg-info
Ignore Python compiled files
2016-06-15 22:18:56 +03:00
*.pyc
__pycache__
Update gitignore
2016-02-09 23:56:18 +03:00
dist/
build/
Test against Python 3.4 and multiple Twisted versions (#75) * Test against Python 3.4 and multiple Twisted versions This commit adds tox to be able to test against different dependencies locally. We agreed that Python 3.4 should be supported across all Channels projects, so it is also added with this commit. Furthermore, I think it makes sense to support a broad range of Twisted releases, as users of daphne are not unlikely to have other Twisted code running. It's not feasible to test against all releases since 16.0, and it would require constant maintenance to add new releases as they come out. So I opted to keep things simple for now, and only test against the oldest supported and the current Twisted release. I did consider @jpic's great idea from https://github.com/django/daphne/pull/19 to just use tox to avoid having to duplicate the dependency matrix. But it does lead to slower test runs as it bypasses Travis' caching, and is slightly more verbose. * Require asgiref 1.0 and use receive instead of receive_many As both daphne and asgiref had a 1.0 release, I think it makes sense to require the presumably more stable asgiref 1.0. It's also a good occasion to fix the deprecation warnings when running the tests by switching to receive instead of receive_many. * Document supported Python and Twisted versions
2017-01-31 04:24:17 +03:00
/.tox
Reference in New Issue
Copy Permalink