-
Notifications
You must be signed in to change notification settings - Fork 767
Remove support to django 1.6 and 1.7 #202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove support to django 1.6 and 1.7 #202
Conversation
c32dd19
to
245ebe3
Compare
df7cea0
to
82055ac
Compare
@syrusakbary can you have a look at this one as well? :) Not sure why the coverage has decreased. |
I've analyzed the downloads for Django 1.6, 1.7 vs the newest ones in Google BigQuery database for PyPI: SELECT
MONTH(timestamp) as month,
file.version,
COUNT(*) as total_downloads
FROM
TABLE_DATE_RANGE(
[the-psf:pypi.downloads],
TIMESTAMP("20170401"),
CURRENT_TIMESTAMP()
)
WHERE
file.project = 'django'
GROUP BY
month,
file.version
ORDER BY
file.version,
month
LIMIT 1000 And the downloads for Django 1.6, Django 1.7 are now considerably low for the latest month compared to the most recent versions. I think is reasonable to deprecate support for it (will add a small note in the README) Merging :) |
Closes #187 and it is helpful for #186 :)