-
Notifications
You must be signed in to change notification settings - Fork 158
update uap-core submodule #70
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
Merged
elsigh
merged 11 commits into
ua-parser:master
from
admitad-github:feature/update-uap-core
Jul 31, 2019
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
16b7615
move uap-core to 0.6.4
c53f836
temporary point to fork with needed regexes
684aebe
reference official updated uap-core repo
d998dbb
update uap-core submodule to 0.6.7
75b7d33
fix expected behaviour to get None instead of empty string for ua ver…
6e8fc93
fix os parsing specification with replacing
6b9848f
pin project dependencies
2141517
fix format in requirements
a9665f7
speed up ci with job parallelization (add support python3.7 and drop …
8b39b34
remove python 3.7 because travis can’t build it
779d917
improve readability
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "uap-core"] | ||
path = uap-core | ||
url = https://github.com/ua-parser/uap-core.git | ||
url = https://github.com/ua-parser/uap-core | ||
branch = master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
sudo: false | ||
language: python | ||
python: | ||
- "3.6" | ||
|
||
env: | ||
- TOX_ENV=py26 | ||
- TOX_ENV=py27 | ||
- TOX_ENV=py36 | ||
- TOX_ENV=docs | ||
- TOX_ENV=py27-flake8 | ||
- TOX_ENV=py36-flake8 | ||
|
||
install: | ||
- pip install tox | ||
- pip install -r requirements_dev.txt | ||
|
||
matrix: | ||
include: | ||
- python: 2.7 | ||
env: | ||
- TOX_ENV=py27 | ||
- TOX_ENV=py27-flake8 | ||
- python: 3.6 | ||
env: | ||
- TOX_ENV=py36 | ||
- TOX_ENV=py36-flake8 | ||
- TOX_ENV=docs | ||
|
||
script: | ||
- tox -e $TOX_ENV | ||
script: tox -e $TOX_ENV |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pyyaml==5.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tox==3.9.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule uap-core
updated
14 files
+4 −1 | .gitignore | |
+8 −0 | .npmignore | |
+1 −0 | .npmrc | |
+2 −3 | .travis.yml | |
+4 −3 | CONTRIBUTING.md | |
+1 −0 | README.md | |
+5 −4 | package.json | |
+395 −207 | regexes.yaml | |
+4 −4 | test_resources/pgts_browser_list.yaml | |
+3 −0 | tests/mocha.opts | |
+36 −0 | tests/regexes.js | |
+90 −0 | tests/test_device.yaml | |
+311 −10 | tests/test_os.yaml | |
+416 −3 | tests/test_ua.yaml |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 am curious, is there any impact of this or None? seems like it would just cause
v1 = None
instead ofv1 = ''
- is that the intent?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.
Yes, it was intended to match with the tests in uap-core, e.g. uap-core/tests/test_os.yaml, where some fields have
None
instead of empty string.