Skip to content

Commit df4fecc

Browse files
authored
Merge branch 'developer' into patch-1
2 parents 7d92bae + fccadb1 commit df4fecc

File tree

95 files changed

+4658
-437212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+4658
-437212
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.6.1
2+
current_version = 2.7.2
33
allow_dirty = True
44
tag_name = version-{new_version}
55
tag = True

.pre-commit-config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,8 @@ repos:
2727
rev: 3.8.4
2828
hooks:
2929
- id: flake8
30+
additional_dependencies: [
31+
'flake8-bugbear==21.3.2',
32+
'flake8-docstrings==1.6.0',
33+
'pep8-naming==0.11.1'
34+
]

.readthedocs.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ version: 2
99
sphinx:
1010
configuration: docs/conf.py
1111

12-
# Build documentation with MkDocs
13-
#mkdocs:
14-
# configuration: mkdocs.yml
15-
1612
# Optionally build your docs in additional formats such as PDF
1713
formats:
1814
- pdf

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include pymove/_version.py
1+
include requirements.txt
22
include LICENSE
33
include README.md
44
include pymove/tests/baseline/*.png

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ lint: clean
2525
flake8
2626

2727
docs: clean
28+
rm -rf docs/api docs/examples
2829
sphinx-apidoc -f -o docs/api pymove pymove/tests/
2930
jupyter nbconvert --to rst --output-dir docs/examples examples/[0-9]*.ipynb
3031
make -C docs html

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,7 @@ If you installed from `pip` or `github`, you may encounter an error related to
219219

220220
## Examples
221221

222-
You can access examples of how to use PyMove [here](examples)
223-
222+
You can access examples of how to use PyMove [here](https://github.com/InsightLab/PyMove/tree/master/examples)
224223
---
225224

226225
## Papers

docs/api/pymove.query.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
pymove.query package
2-
=======================
2+
====================
33

44
Submodules
55
----------
66

77
pymove.query.query module
8-
-------------------------------
8+
-------------------------
99

1010
.. automodule:: pymove.query.query
1111
:members:
1212
:undoc-members:
1313
:show-inheritance:
1414

15-
1615
Module contents
1716
---------------
1817

docs/api/pymove.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Subpackages
1010
pymove.core
1111
pymove.models
1212
pymove.preprocessing
13+
pymove.query
1314
pymove.semantic
1415
pymove.uncertainty
1516
pymove.utils

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Docs configuration."""
12
# Configuration file for the Sphinx documentation builder.
23
#
34
# This file only contains a selection of the most common options. For a full

docs/examples/00_What_is_PyMove.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#00 - What is PyMove?
2-
=====================
1+
00 - What is PyMove?
2+
====================
33

44
**PyMove** is a Python library, open-source, that have operations to
55
handling trajectories data, ranging from data representation,
@@ -15,7 +15,7 @@ data preprocessing, pattern mining and data visualization.
1515
--------------
1616

1717
Enviroment settings
18-
~~~~~~~~~~~~~~~~~~~
18+
-------------------
1919

2020
1. Create an environment using **Conda**
2121

@@ -26,7 +26,7 @@ Enviroment settings
2626
``conda activate validacao-pymove``
2727

2828
Using PyMove
29-
^^^^^^^^^^^^
29+
------------
3030

3131
1. Clone this repository
3232

@@ -57,7 +57,7 @@ Using PyMove
5757
``import pymove``
5858

5959
What can you do with PyMove?
60-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
60+
----------------------------
6161

6262
With Pymove you can handling trajectories data with operations of: -
6363
Grid - Preprocessing: this including segmentation, compression, noise

0 commit comments

Comments
 (0)