Skip to content
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

Support Python 3.12 #31

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Support Python 3.12 #31

wants to merge 2 commits into from

Conversation

JasperCraeghs
Copy link
Member

natsort>=8 is needed to support Python 3.12

@@ -20,8 +20,8 @@
package_dir={'': 'src'},
entry_points={'console_scripts': ['jira-juggler = mlx.jira_juggler:entrypoint']},
include_package_data=True,
install_requires=['jira>=3.1.1', 'python-dateutil>=2.8.0,<3.0', 'natsort>=7.1.0,<8.0', 'python-decouple'],
setup_requires=['setuptools-scm>=6.0.0,<8.0'],
install_requires=['jira>=3.1.1', 'python-dateutil>=2.8.0', 'natsort>=7.1.0', 'python-decouple'],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldnt we still limit to below 9? Better safe than sorry.

Copy link
Member Author

@JasperCraeghs JasperCraeghs Nov 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm inclined to only add a limit when an incompatibility has been discovered. Perhaps someone wants to install jira-juggler and natsort>=9 in their environment. It's a bit silly to not allow it, especially when we don't release jira-juggler often. We could add dependabot to automatically create PRs for us, but I'm not a fan of this additional workload.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants