-
Notifications
You must be signed in to change notification settings - Fork 384
Dev environment updates #694
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
base: develop
Are you sure you want to change the base?
Conversation
…ported Python version to 3.13, simplify dependency-groups, update deprecated license field format
pyproject.toml
Outdated
| readme = "README.md" | ||
| requires-python = ">=3.7" | ||
| license = { text = "Apache-2.0" } | ||
| requires-python = ">=3.13.0, <3.14" |
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.
| requires-python = ">=3.13.0, <3.14" | |
| requires-python = ">=3.13.0" |
Why <3.14?
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.
That was intentional - I've had some packages scream incompatibility with 3.14 but I can't reproduce that now, so that might've been fixed in the meantime.
|
|
||
| .PHONY: docker-splunk-restart | ||
| docker-splunk-restart: | ||
| docker exec -it splunk-instance sh -c '/opt/splunk/bin/splunk restart' |
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.
| docker exec -it splunk-instance sh -c '/opt/splunk/bin/splunk restart' | |
| docker exec -it splunk sh -c '/opt/splunk/bin/splunk restart' |
Or has something changed that causes that?
Same below.
|
|
||
| .PHONY: docker-tail-python-log | ||
| docker-tail-python-log: | ||
| docker exec splunk-instance tail /opt/splunk/var/log/splunk/python.log |
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.
| docker exec splunk-instance tail /opt/splunk/var/log/splunk/python.log | |
| docker exec splunk sudo tail /opt/splunk/var/log/splunk/python.log |
Grouping these up as none warrant a full PR.