-
Notifications
You must be signed in to change notification settings - Fork 29
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
Auto versioning update #305
Changes from all commits
72d9ff9
6b873bb
d9773d6
9622a04
9acdd98
f1174f0
1bb7ab0
d828e01
99ac19b
a17592d
912a649
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
# Python caching | ||
**/__pycache__/ | ||
*.pyc | ||
/.mypy_cache/ | ||
# Python build artifacts | ||
__pycache__/ | ||
*.py[cod] | ||
*.so | ||
build/ | ||
dist/ | ||
*.egg-info/ | ||
.eggs/ | ||
|
||
# Typical virtualenv dir | ||
/venv/ | ||
# Virtual environment | ||
venv/ | ||
env/ | ||
|
||
# IDE settings | ||
/.idea/ | ||
# IDE specific files | ||
.vscode/ | ||
.idea/ | ||
|
||
# Python distribution artifacts | ||
/build/ | ||
/dist/ | ||
/*.egg-info/ | ||
/docs/build/ | ||
# Temporary files | ||
*.tmp | ||
*.bak | ||
*.swp | ||
|
||
Comment on lines
+18
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have you encountered this files? I get that if they would exist, we'd want to ignore them, but I personally haven't seen these in Python projects, so if there's no need, I wouldn't add these to the .gitignore. |
||
# Coverage artifacts | ||
/.coverage | ||
/htmlcov/ | ||
/docs/build/ | ||
/.hypothesis/ | ||
|
||
Comment on lines
-18
to
-22
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why were these removed? We're using coverage and the sphinx documentation files are in |
||
# customized config files | ||
/test/test_config.ini | ||
# Schema files needed for testing | ||
Comment on lines
-24
to
-25
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would keep this |
||
/test/adapter/schemas | ||
# Project specific | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are also actively used in the CI, so it makes sense to keep them |
||
basyx/version.py |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ Werkzeug>=3.0.3,<4 | |
schemathesis~=3.7 | ||
hypothesis~=6.13 | ||
lxml-stubs~=0.5.1 | ||
|
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.
I preferred the `**/pycache/ from before, since it matches any pycache directory at any level in the repository. These might occur when you run a module outside of the main directory.