Skip to content

Commit f486e20

Browse files
authored
PyMEOS 1.1 - Final Release
2 parents 46b51a6 + 7a164c5 commit f486e20

13 files changed

Lines changed: 360 additions & 346 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,8 @@ print(f'Speeds: {speed}')
4848

4949
# Call finish at the end of your code
5050
pymeos_finalize()
51-
````
51+
````
52+
53+
# Documentation
54+
55+
Visit our [ReadTheDocs page](https://pymeos.readthedocs.io/en/latest/) for a more complete and detailed documentation, including an installation manual and several examples.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'PyMEOS'
1010
copyright = '2023, Víctor Diví'
1111
author = 'Víctor Diví'
12-
release = '1.1.3.rc2'
12+
release = '1.1.3'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

docs/index.rst

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
.. PyMEOS documentation master file, created by
2-
sphinx-quickstart on Thu Oct 5 18:26:38 2023.
3-
You can adapt this file completely to your liking, but it should at least
4-
contain the root `toctree` directive.
5-
61
=======
72
PyMEOS
83
=======
@@ -33,19 +28,13 @@ distributions using ``pip``:
3328
3429
$ pip install pymeos
3530
36-
.. warning::
37-
Versions up to 1.1.2 of PyMEOS (0.0.8 of PyMEOS CFFI) should not be used. Instead,
38-
use version 1.1.3 (1.1.0 for PyMEOS CFFI) which is currently in pre-release mode.
39-
40-
To use it, you have to use the ``--pre`` flag of ``pip``. To avoid installing
41-
pre-release versions of the dependencies, install ``pymeos`` normally and then
42-
update it using the following command:
43-
44-
``pip install --pre --force-reinstall --no-deps pymeos pymeos_cffi``
45-
4631
See the `installation documentation <./src/installation.html>`__
4732
for more details and advanced installation instructions.
4833

34+
Examples
35+
==================
36+
A couple of examples showcasing the capabilities of PyMEOS can be found int the `examples section <./src/examples.html>`__.
37+
4938
.. toctree::
5039
:caption: User Guide
5140
:hidden:

docs/src/installation.rst

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,6 @@ time of the PyMEOS release. Install the binary wheel with pip as follows:
1818
1919
$ pip install pymeos
2020
21-
.. warning::
22-
Versions up to 1.1.2 of PyMEOS (0.0.8 of PyMEOS CFFI) should not be used. Instead,
23-
use version 1.1.3 (1.1.0 for PyMEOS CFFI) which is currently in pre-release mode.
24-
25-
To use it, you have to use the ``--pre`` flag of ``pip``. To avoid installing
26-
pre-release versions of the dependencies, install ``pymeos`` normally and then
27-
update it using the following command:
28-
29-
``pip install --pre --force-reinstall --no-deps pymeos pymeos_cffi``
30-
3121
3222
Installation using conda (incoming, not available yet)
3323
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

pymeos/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,8 @@ print(f'Speeds: {speed}')
3737

3838
# Call finish at the end of your code
3939
pymeos_finalize()
40-
````
40+
````
41+
42+
# Documentation
43+
44+
Visit our [ReadTheDocs page](https://pymeos.readthedocs.io/en/latest/) for a more complete and detailed documentation, including an installation manual and several examples.

pymeos/pymeos/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
MeosGeoJsonOutputError,
3030
)
3131

32-
__version__ = "1.1.3rc2"
32+
__version__ = "1.1.3"
3333
__all__ = [
3434
# initialization
3535
"pymeos_initialize",

pymeos/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ license = { file = 'LICENSE' }
3434

3535
requires-python = '>=3.7'
3636
dependencies = [
37-
'pymeos-cffi ==1.1.0rc2',
37+
'pymeos-cffi >=1.1.0, <2',
3838
'python-dateutil',
3939
'shapely',
4040
]

0 commit comments

Comments
 (0)