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

Proto files moved to a separate proto module. #42

Merged
merged 33 commits into from
Aug 17, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b34d393
Proto files moved to a separate proto module.
panasevychol Aug 12, 2021
2f7edce
Imports fixed.
panasevychol Aug 12, 2021
7d90930
Imports fixed with isort.
panasevychol Aug 12, 2021
14873f3
Manifest updated.
panasevychol Aug 12, 2021
5e510f9
Mypy ignored Proto module.
panasevychol Aug 12, 2021
c0925ed
Imports fixed.
panasevychol Aug 12, 2021
1795670
Proto imports fixed.
panasevychol Aug 12, 2021
124b483
Package docstring added.
panasevychol Aug 12, 2021
32de8dc
Makefile updated.
panasevychol Aug 12, 2021
0f91d72
chore: restructure and refactor
5A11 Aug 16, 2021
42565b9
fix: examples, manifest, setup.py
5A11 Aug 16, 2021
f040e98
fix: makefile
5A11 Aug 16, 2021
d919cc7
Makefile fi
MissingNO57 Aug 17, 2021
4a4d17e
tox.ini fix
MissingNO57 Aug 17, 2021
08c101d
fix
MissingNO57 Aug 17, 2021
515d8bd
import fixes
MissingNO57 Aug 17, 2021
348f53b
Import fixes
MissingNO57 Aug 17, 2021
5cac6b9
Fixes
MissingNO57 Aug 17, 2021
a66df5c
changes
MissingNO57 Aug 17, 2021
8a2384c
Copyright check
MissingNO57 Aug 17, 2021
52e49a5
copyright checks
MissingNO57 Aug 17, 2021
9d6682d
changes
MissingNO57 Aug 17, 2021
d35842c
Fixes
MissingNO57 Aug 17, 2021
5653d66
More fixes
MissingNO57 Aug 17, 2021
dd7e5ef
fix
MissingNO57 Aug 17, 2021
7878f3f
pylint fix
MissingNO57 Aug 17, 2021
45d0ab4
Copyright setup.py
MissingNO57 Aug 17, 2021
9af6624
comment
MissingNO57 Aug 17, 2021
fa3db0c
setup.py checks
MissingNO57 Aug 17, 2021
0405aee
setup.cfg
MissingNO57 Aug 17, 2021
9097585
module docstring
MissingNO57 Aug 17, 2021
48a57a9
pack fix
MissingNO57 Aug 17, 2021
c9f1237
Piplock update
MissingNO57 Aug 17, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pylint fix
  • Loading branch information
MissingNO57 committed Aug 17, 2021
commit 7878f3f67b5b409798dfed434fdf7ced333b3681
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ mypy:

.PHONY: pylint
pylint:
pylint $(PYCOSM_SRC_DIR) $(PYCOSM_TESTS_DIR) $(PYCOSM_EXAMPLES_DIR)
pylint $(PYCOSM_SRC_DIR) $(PYCOSM_TESTS_DIR) $(PYCOSM_EXAMPLES_DIR) --ignore-paths "pycosm/protos/"

####################
### Tests
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ skip_install = True
deps =
pylint==2.9.6
-rrequirements.txt
commands = pylint pycosm tests examples --exclude "/pycosm/protos/"
commands = pylint pycosm tests examples --ignore-paths "pycosm/protos/"

[testenv:test]
skipsdist = True
Expand Down