summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3942 from kdaily/add-deprecation-infraHEADdevelopKenneth Daily2022-05-132-3/+3
|\ | | | | fix indent issues with open and close issue messages
| * change name of open pr workflowKenneth Daily2022-04-281-1/+1
| |
| * fix indent issuesKenneth Daily2022-04-282-2/+2
| |
* | Merge pull request #3941 from kdaily/add-deprecation-infraKenneth Daily2022-04-281-2/+4
|\ \ | |/ | | change to 8 years ancient and add different labels
| * change to 8 years ancient and add different labelsKenneth Daily2022-04-261-2/+4
| |
* | Merge pull request #3940 from kdaily/add-deprecation-infraKenneth Daily2022-04-255-3/+69
|\ \ | |/ | | Add deprecation infrastructure
| * Add new issue template with deprecation noticeKenneth Daily2022-04-222-3/+7
| |
| * set ancient to 7 years old as first pass.Kenneth Daily2022-04-221-1/+1
| |
| * update message to have a prominent headerKenneth Daily2022-04-202-2/+6
| |
| * Update to check PRs for staleness too.Kenneth Daily2022-04-201-0/+32
| |
| * Add workflow to comment on opened prs.Kenneth Daily2022-04-201-0/+13
| |
| * Add workflow on issue creation to commentKenneth Daily2022-04-201-0/+13
|/ | | Comment that issues are not triaged.
* Merge pull request #3924 from kdaily/add-gh-actionKenneth Daily2021-05-261-0/+0
|\ | | | | move workflow
| * move workflowKenneth Daily2021-05-261-0/+0
|/
* Merge pull request #3922 from boto/add-deprecation-noticesKenneth Daily2021-05-264-77/+30
|\ | | | | Add deprecation notices
| * Remove travis CI.add-deprecation-noticesKenneth Daily2021-05-261-57/+0
| |
| * add deprecation headerKenneth Daily2021-05-261-0/+4
| |
| * remove warningKenneth Daily2021-05-261-4/+3
| |
| * add fail PR GH actionKenneth Daily2021-05-261-0/+13
| |
| * remove existing boto3 sectionKenneth Daily2021-05-261-19/+0
| |
| * Create new_issue.yamlKenneth Daily2021-05-041-0/+10
| |
| * Update README.rstKenneth Daily2021-05-041-3/+6
|/
* Merge pull request #3862 from walkerjoe/stringfixMike Schwartz2019-03-304-15/+4
|\ | | | | Stringfix & get_utf8 method cleanup
| * Adding PyYAML==3.1 for python 2.6 compatibilityJoe Walker2019-03-291-0/+1
| |
| * Added idna==2.7 to py26 and py33 req docsJoe Walker2019-03-292-0/+2
| | | | | | | | | | | | idna 2.8 requires 2.7 or 3.4+ in order to run. idna version 2.7, however, does support the older versions of python so the tests can be performed.
| * removing duplicate `get_utf8_value` methodJoe Walker2019-03-291-14/+0
| |
| * Ensure correct type for writing mocked dataJoe Walker2019-03-291-1/+1
| |
* | Merge pull request #3861 from catleeball/replace-get-utf8Mike Schwartz2019-03-289-29/+75
|\ \ | |/ | | Ensure strings can be utf-8 encoded
| * Encode values to be hashed as utf-8Cat Lee Ball 🎷🐛2019-03-281-2/+2
| |
| * Replaced some six.ensure_strs from a previous commit of mineCat Lee Ball 🎷🐛2019-03-281-2/+2
| |
| * Replaced get_utf8_value calls in mturk with get_utf8able_strCat Lee Ball 🎷🐛2019-03-281-2/+2
| |
| * Updated docstring with string coercion behavior.Lee Ball2019-03-271-1/+4
| |
| * Forgot the `six.`Lee Ball2019-03-271-1/+1
| |
| * Utf8able now coerces objects to stringsLee Ball2019-03-271-0/+2
| |
| * Added import to get_utf8ableLee Ball2019-03-271-0/+1
| |
| * Merge pull request #5 from catleeball/utf8ableLee Ball2019-03-271-7/+12
| |\ | | | | | | Use get_utf8able_str over get_utf8_value
| | * Merge branch 'replace-get-utf8' into utf8ableLee Ball2019-03-270-0/+0
| | |\ | | |/ | |/|
| * | Back to the old implementationLee Ball2019-03-271-6/+1
| | |
| * | Re-add get_utf8_value with get_utf8able_str implementationLee Ball2019-03-271-0/+9
| | |
| * | Re-add get_utf8_value interface with get_utf8able_str implementationLee Ball2019-03-271-0/+9
| | |
| * | Returned get_utf8_value for mturk dependencyLee Ball2019-03-271-0/+14
| | |
| * | Removed obsolete if statementLee Ball2019-03-271-5/+2
| | |
| * | Merge branch 'develop' into replace-get-utf8Lee Ball2019-03-272-2/+84
| |\ \ | |/ / |/| |
| * | Replaced stray `six.ensure` callLee Ball2019-03-271-1/+1
| | |
| * | Added function get_utf8able_strCat Lee Ball 🎷🐛2019-03-277-16/+45
| | | | | | | | | | | | | | | This function will ensure given objects are utf-8 encodable, used mainly for allowing for Python 2/3 compatibility.
| * | Added missing import to sixCat Lee Ball 🎷🐛2019-03-261-0/+1
| | |
| * | Removed get_utf8 importsCat Lee Ball 🎷🐛2019-03-263-3/+0
| | |
| * | Replaced get_utf8_value with six.ensure_strCat Lee Ball 🎷🐛2019-03-268-33/+17
| | | | | | | | | | | | | | | | | | We replaced the old method get_utf8_value with six.ensure_str now that it's available. ensure_str behaves more relibaly and accurately in testing than the get_utf8_value function.
| | * Use get_utf8able_str over get_utf8_valueCat Lee Ball 🎷🐛2019-03-278-26/+66
| |/ |/|
* | Merge pull request #3859 from catleeball/fd-writerMike Schwartz2019-03-262-2/+84
|\ \ | |/ |/| Added print_to_fd to utils.py