-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to ipyleaflet==0.19.1, ipwidgets==8.1.3, jupyterlite~=0.3.0
Add Python 3.12 support+testing (remove testing on 3.8) Signed-off-by: Emmanuel Decitre <[email protected]>
- Loading branch information
Showing
12 changed files
with
294 additions
and
662 deletions.
There are no files selected for viewing
This file contains 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 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 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 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,10 +1,67 @@ | ||
# Copyright (C) 2019-2024 HERE Global B.V. and its affiliate(s). | ||
# All rights reserved. | ||
# | ||
# This software and other materials contain proprietary information | ||
# controlled by HERE and are protected by applicable copyright legislation. | ||
# Any use and utilization of this software and other materials and | ||
# disclosure to any third parties is conditional upon having a separate | ||
# agreement with HERE for the access, use, utilization or disclosure of this | ||
# software. In the absence of such agreement, the use of the software is not | ||
# allowed. | ||
|
||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "here-search-demo" | ||
version = "0.9.1" | ||
description = "HERE Geocoding and Search demo and widgets" | ||
readme = "README.md" | ||
authors = [ {name = "HERE Global B.V. and its affiliate(s)", email = "[email protected]"} ] | ||
license = {text = "The MIT License"} | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Scientific/Engineering :: GIS", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
dynamic = ["dependencies"] | ||
|
||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements/build.txt"]} | ||
|
||
[project.urls] | ||
homepage = "https://here.com" | ||
repository = "ssh://[email protected]:heremaps/here-search-demo.git" | ||
|
||
[project.optional-dependencies] | ||
lab = [ | ||
"aiohttp", | ||
"xyzservices" | ||
] | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[tool.bumpver] | ||
current_version = "0.9.1" | ||
version_pattern = "MAJOR.MINOR.PATCH" | ||
|
@@ -15,11 +72,9 @@ push = true | |
|
||
[tool.bumpver.file_patterns] | ||
"pyproject.toml" = [ | ||
'version = "{version}"', | ||
'current_version = "{version}"', | ||
] | ||
"src/here_search/demo/__init__.py" = [ | ||
'^__version__ = "{version}"$' | ||
] | ||
"src/here_search/demo/notebooks/*.ipynb" = [ | ||
'here_search_demo-{version}-py3-none-any.whl' | ||
] | ||
|
This file contains 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,9 +1,10 @@ | ||
jupyterlab>=3.5.2,<4 | ||
jupyterlab_widgets>=1.1.1 | ||
jupyterlab-filesystem-access>=0.5.3 | ||
jupyterlite~=0.1.2 | ||
ipywidgets>=8,<9 | ||
ipyleaflet==0.17.3 | ||
jupyterlite-core==0.1.2 | ||
jupyterlite-pyodide-kernel==0.1.1 | ||
ipyleaflet==0.19.1 | ||
ipywidgets==8.1.3 | ||
jupyterlab | ||
jupyterlab_widgets | ||
jupyterlab-filesystem-access | ||
jupyterlite~=0.3.0 | ||
jupyterlite-core | ||
jupyterlite-pyodide-kernel | ||
jupyterlite-javascript-kernel | ||
libarchive-c |
This file contains 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,2 @@ | ||
wheel | ||
build | ||
bumpver | ||
twine | ||
pur |
Oops, something went wrong.