-
Notifications
You must be signed in to change notification settings - Fork 49
Add compatability for py 3.12 (+Operators changes from 2.13.9rc0) #1171
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
Closed
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
b1d7044
extract sample_ratio for automlx explainability
ahosler b8a365f
cut pre-release rc0
ahosler 4ea9d90
add logger warning when file write fails
ahosler 1bffedc
3.12 license compliant
ahosler 30a32f9
add testing for report generation failure
ahosler 3973ca4
name license upl
ahosler 2212276
name license upl
ahosler 801010b
make compatible with py312
ahosler 70d07ac
duplicate setuptools
ahosler bd15dec
remove egg info from gitignore
ahosler 2fd204d
change pkgs to just ads
ahosler 519fb55
remove setup.py for py312
ahosler c05d1b1
remove cython
ahosler fc52ba4
bump pyyaml version
ahosler e184fa9
modify pkgs.find
ahosler a3c8465
clean up test
ahosler 737e8b0
revert version number
ahosler f9d9eca
Merge branch 'main' into add_py312_compat
ahosler 9da0462
Merge branch 'main' into add_py312_compat
mrDzurb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ parts/ | |
sdist/ | ||
var/ | ||
wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
ads_latest.zip | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
# Manifest.in file used by setuptools, which we are not using anymore. | ||
# Do not add anything to this file, unless revert back to setuptools, which is not recommended. See why here: | ||
# https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html. | ||
|
||
# Instead flit-core used as backend to build ADS - see section [build-system] in pyproject.toml. | ||
# For flit-core we can specify files and folders, which needs to be included or excluded in build using | ||
# [tool.flit.sdist] section of pyproject.toml. See: https://flit.pypa.io/en/latest/pyproject_toml.html#sdist-section | ||
# If build-system library will change, make changed to list of included/excluded to build files accordingly | ||
# as it will be suggested by new build-system library. | ||
include THIRD_PARTY_LICENSES.txt | ||
include LICENSE.txt | ||
include README.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we add MANIFEST back, we should consider to exclude the tests?