-
Notifications
You must be signed in to change notification settings - Fork 2k
Drop Python 2.6 support #3126
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
Comments
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jun 17, 2016
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jun 17, 2016
- `operator.methodcaller` was implemented in python2.7. Now that ckan only supports 2.7 it is no longer required to check if the import is possible or not. We can besure that it is there.
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jun 17, 2016
- `operator.methodcaller` was implemented in python2.7. Now that ckan only supports 2.7 it is no longer required to check if the import is possible or not. We can besure that it is there.
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jun 17, 2016
- `assert_in` and `assert_not_in` were duplicated in `ckan/tests/legacy/__init__.py` and `ckan.tests.helpers` because they were not available in python2.6 - This commit removes the back porting from those files and just imports from nose.tools directly everywhere
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jun 17, 2016
- This was used to skip this test under python2.6 which will not be tested anymore in the future
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jun 17, 2016
- removes some code that was used to skip tests and change solr settings under python2.6 which is not tested against anymore
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jun 20, 2016
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jun 20, 2016
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jul 4, 2016
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jul 4, 2016
- `operator.methodcaller` was implemented in python2.7. Now that ckan only supports 2.7 it is no longer required to check if the import is possible or not. We can besure that it is there.
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jul 4, 2016
- `assert_in` and `assert_not_in` were duplicated in `ckan/tests/legacy/__init__.py` and `ckan.tests.helpers` because they were not available in python2.6 - This commit removes the back porting from those files and just imports from nose.tools directly everywhere
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jul 4, 2016
- removes some code that was used to skip tests and change solr settings under python2.6 which is not tested against anymore
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jul 4, 2016
k-nut
pushed a commit
to k-nut/ckan
that referenced
this issue
Jul 4, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It was announced to the mailing list by @amercader in January that support for python 2.6 was going to be dropped with ckan 2.6 (what a wonderful coincidence).
https://lists.okfn.org/pipermail/ckan-dev/2016-January/009608.html
There still are some backports and workaraounds for 2.6 in the code and the documentation needs upgrading.
Grep for
2.6
Python files
Documentation:
I'll prepare a PR to remove all of those things.
The text was updated successfully, but these errors were encountered: