-
Notifications
You must be signed in to change notification settings - Fork 3k
Drop Python 3.6 support #4460
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
Drop Python 3.6 support #4460
Changes from 17 commits
3248518
6ad94e1
3800c49
32aab3d
2dee899
8c6ce19
89b9ea6
f9b24c4
8a82d72
3dbe753
6eab0e4
97ee698
1cdcaa5
30de7fa
983b04e
eac1aaa
4db3cf9
c4b4cb6
2674f0c
c3bc52d
ad949dd
feebd90
59a1e3d
9c2b16c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| import base64 | ||
| import distutils.dir_util | ||
| import logging | ||
| import os | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| unbabel-comet>=1.0.0;python_version>'3.6' | ||
| unbabel-comet>=1.0.0 | ||
| git+https://github.com/google-research/bleurt.git | ||
| git+https://github.com/ns-moosavi/coval.git | ||
| git+https://github.com/hendrycks/math.git |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"bigscience": {"description": "", "citation": "", "homepage": "", "license": "", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "text", "config_name": "bigscience", "version": {"version_str": "0.0.0", "description": null, "major": 0, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 938, "num_examples": 22, "dataset_name": "text"}}, "download_checksums": {"C:\\Users\\Mario\\Desktop\\bigscience\\biscience.txt": {"num_bytes": 892, "checksum": "1e1f85c9e2aefb6990dc6ec4a8805af1e5451ebecb7e9f50face10c83eed742e"}}, "download_size": 892, "post_processing_size": null, "dataset_size": 938, "size_in_bytes": 1830}} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3119,7 +3119,7 @@ def test_pickle_dataset_after_transforming_the_table(in_memory, method_and_param | |
|
|
||
|
|
||
| @pytest.mark.skipif( | ||
| os.name == "nt" and (os.getenv("CIRCLECI") == "true" or os.getenv("GITHUB_ACTIONS") == "true"), | ||
| os.name in ["nt", "posix"] and (os.getenv("CIRCLECI") == "true" or os.getenv("GITHUB_ACTIONS") == "true"), | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think you need this ? The test currently passes on
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't on Python 3.7. Notice the
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok. This test is almost never run then, Maybe let's remove it completely in another PR, and make another one to make sure S3 export works as expected. Maybe we can use the
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This issue seems related to getmoto/moto#4750, but neither bumping |
||
| reason='On Windows CircleCI or GitHub Actions, it raises botocore.exceptions.EndpointConnectionError: Could not connect to the endpoint URL: "http://127.0.0.1:5555/test"', | ||
| ) # TODO: find what's wrong with CircleCI / GitHub Actions | ||
| @require_s3 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.