-
Notifications
You must be signed in to change notification settings - Fork 289
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
Add Python 3.12 support #351
Conversation
Task linked: CU-86ayu7163 CTGAN - Support Python 3.12 #324 |
b8cacc2
to
bdc261c
Compare
[tox] | ||
envlist = py39-lint, py3{8,9,10,11}-{unit,integration,readme} | ||
envlist = py39-lint, py3{8,9,10,11,12}-{unit,integration,readme} | ||
|
||
[testenv] | ||
skipsdist = false |
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.
Do we even use tox.ini
anymore ? If not I think we can remove it
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.
The makefile commands clean-test
and test-all
use tox.
@@ -57,7 +57,7 @@ def _get_minimum_versions(dependencies, python_version): | |||
for dependency in dependencies: | |||
if '@' in dependency: | |||
name, url = dependency.split(' @ ') | |||
min_versions[name] = f'{name} @ {url}' | |||
min_versions[name] = f'{url}#egg={name}' |
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.
@R-Palazzo Is there anything else that should be done here?
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.
CU-86ayu7163, Resolve #324.