-
Notifications
You must be signed in to change notification settings - Fork 25
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 support for Python 3.13 #926
Conversation
6e3cb39
to
0aef337
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #926 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 18 18
Lines 2233 2233
=========================================
Hits 2233 2233
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
The required git checks should update from |
Task linked: CU-86b2mqe0j RDT - Support Python 3.13 #899 |
pyproject.toml
Outdated
@@ -48,7 +53,7 @@ dependencies = [ | |||
rdt = { main = 'rdt.cli.__main__:main' } | |||
|
|||
[project.optional-dependencies] | |||
copulas = ['copulas>=0.12.0',] | |||
copulas = ['copulas@git+https://[email protected]/sdv-dev/copulas.git',] |
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.
we can wait to merge this until we release copulas
pyproject.toml
Outdated
@@ -48,7 +53,7 @@ dependencies = [ | |||
rdt = { main = 'rdt.cli.__main__:main' } | |||
|
|||
[project.optional-dependencies] | |||
copulas = ['copulas>=0.12.0',] | |||
copulas = ['copulas@git+https://[email protected]/sdv-dev/copulas.git',] |
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.
@rwedge Can we point this to the copulas release candidate to see if it passes?
Addresses #899
CU-86b2mqe0j