Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
31f1e08
Use webresource for resource registration
rnixx Jun 10, 2022
02bb5cf
remove superfluous import
rnixx Jun 10, 2022
b5fb40d
test resources
rnixx Jun 11, 2022
618b9fe
configure resources first in main hook
rnixx Jun 11, 2022
c4ce737
Implement static map markers. Fix control layers creation in ``Map.cr…
rnixx Jul 27, 2022
c721e72
Implement map markers from JSON source.
rnixx Jul 27, 2022
12e227e
Add ``MapTile.map_bounds`` property. Map settings gets rendered as si…
rnixx Nov 21, 2022
ba53441
Fix tests
rnixx Nov 21, 2022
4a84b0c
Map settings are defined via ``MapTile.map_settings`` property.
rnixx Nov 21, 2022
7f5bbde
use cone.app resource registry
rnixx Dec 10, 2022
a965496
Add Leaflet.Editable
rnixx Dec 11, 2022
96e6e42
Update tests
rnixx Dec 11, 2022
c07f817
Add ``Path.Drag.js`` to resources.
rnixx Feb 8, 2023
21f6f26
Fix tests
rnixx Mar 1, 2023
5894a39
Makefile
lenadax Nov 15, 2024
8814143
remove deprecated rollup terser plugin
lenadax Nov 18, 2024
5fe621b
Refactor package layout to modern Python packaging
rnixx Oct 21, 2025
a4e71ef
Use hatchling instead of setuptools
rnixx Oct 21, 2025
3fc0a3c
add tool.hatch.build.targets.wheel sections
rnixx Oct 21, 2025
46ad068
Remove MANIFEST.in and update to Python 3.10-3.14
rnixx Oct 22, 2025
6d70694
Update package versions.
rnixx Nov 3, 2025
45ad080
Add pytest namespace packahe handling options
rnixx Nov 3, 2025
2ddcdbb
create tests folder
rnixx Nov 4, 2025
6b63f8d
pin versions in pyproject.toml
lenadax Nov 4, 2025
5a74f16
merge mxmake
rnixx Nov 4, 2025
c3e6bb4
blankline
rnixx Nov 4, 2025
26aca51
add hatch-fancy-pypi-readme. change package manager to pnpm. update w…
lenadax Nov 11, 2025
65a9284
remove obsolete lines in pyproject.toml
lenadax Nov 13, 2025
d36bd2d
change venv directory to 'venv'. remove unnecessary files from build
lenadax Nov 25, 2025
1040de5
define fancy-pypi-readme fragments as regular array
lenadax Nov 27, 2025
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
40 changes: 0 additions & 40 deletions .github/workflows/python-package.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test cone.maps

on: [push]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"

steps:
- uses: actions/checkout@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Show Python version
run: python -c "import sys; print(sys.version)"

- name: Run tests an collect code coverage
run: make coverage
13 changes: 11 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
__pycache__
*.egg-info
*.pyc
/.coverage
/.mxmake/
/build/
/constraints-mxdev.txt
/dist/
/src/cone.maps.egg-info/
/node_modules/
/package-lock.json
/pnpm-lock.yaml
/requirements-mxdev.txt
/sources/
/venv/
__pycache__
34 changes: 31 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,38 @@
Changes
=======

0.2 (unreleased)
----------------
1.1.0 (unreleased)
------------------

- Setup Makefile.
[lenadax]

- Run tests with pytest.
[lenadax]

- Add ``Path.Drag.js`` to resources.
[rnix]

- Add ``Leaflet.Editable`` to resources.
[rnix]

- Map settings are defined via ``MapTile.map_settings`` property.
[rnix]

- No changes yet.
- Map settings gets rendered as single data attribute.
[rnix]

- Add ``MapTile.map_bounds`` property.
[rnix]

- Fix control layers creation in ``Map.create_controls``.
[rnix]

- Implement map markers from JSON source.
[rnix]

- Implement static map markers.
[rnix]


0.1 (2021-11-21)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
License
=======

Copyright (c) 2021, Cone Contributors
Copyright (c) 2021-2022, Cone Contributors
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
5 changes: 0 additions & 5 deletions MANIFEST.in

This file was deleted.

Loading
Loading