Skip to content

Commit 32fc1b0

Browse files
authored
Merge pull request #57 from eukarya-inc/dev-py3dtiles-7.0.0
upgrade to py3dtiles 7.0.0 and rewrite requirements
2 parents 988d053 + e59bf00 commit 32fc1b0

File tree

3 files changed

+52
-52
lines changed

3 files changed

+52
-52
lines changed

Diff for: dev-requirements.txt

+47-44
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,78 @@
1+
aiohttp==3.9.1
2+
aiosignal==1.3.1
13
alabaster==0.7.13
2-
Babel==2.12.1
3-
black==23.3.0
4-
bleach==6.0.0
5-
build==0.10.0
6-
certifi==2023.5.7
7-
charset-normalizer==3.1.0
4+
async-timeout==4.0.3
5+
attrs==23.1.0
6+
Babel==2.14.0
7+
black==23.12.0
8+
build==1.0.3
9+
certifi==2023.11.17
10+
charset-normalizer==3.3.2
811
click==8.1.3
9-
coverage==7.2.7
10-
Cython==3.0.2
12+
coverage==7.3.3
13+
Cython==3.0.6
1114
docutils==0.20.1
1215
earcut==1.1.5
13-
exceptiongroup==1.1.1
14-
frozendict==2.3.8
16+
exceptiongroup==1.2.0
17+
frozendict==2.3.10
18+
frozenlist==1.4.0
1519
httpretty==1.1.4
16-
idna==3.4
20+
idna==3.6
1721
imagesize==1.4.1
18-
importlib-metadata==6.6.0
22+
importlib-metadata==7.0.0
1923
iniconfig==2.0.0
20-
jaraco.classes==3.2.3
24+
jaraco.classes==3.3.0
2125
Jinja2==3.1.2
22-
keyring==24.0.0
23-
laspy==2.5.1
24-
llvmlite==0.40.1
26+
keyring==24.3.0
27+
llvmlite==0.41.1
2528
lz4==4.3.2
2629
markdown-it-py==3.0.0
27-
MarkupSafe==2.1.2
30+
MarkupSafe==2.1.3
2831
mdurl==0.1.2
29-
more-itertools==9.1.0
32+
more-itertools==10.1.0
33+
multidict==6.0.4
3034
mypy-extensions==1.0.0
31-
numba==0.57.1
32-
numpy==1.22.4
33-
packaging==23.1
34-
pandas==2.1.0
35-
pathspec==0.11.1
35+
nh3==0.2.15
36+
numba==0.58.1
37+
numpy==1.26.2
38+
packaging==23.2
39+
pandas==2.1.4
40+
pathspec==0.12.1
3641
Pillow==10.0.1
3742
pkginfo==1.9.6
38-
platformdirs==3.5.1
39-
pluggy==1.0.0
40-
plyfile==1.0.1
41-
psutil==5.9.5
42-
psycopg2-binary==2.9.7
43-
git+https://gitlab.com/Oslandia/py3dtiles.git@489289d2f7310fbcb8e95710e250d893999adf5d#egg=py3dtiles
44-
Pygments==2.15.1
43+
platformdirs==4.1.0
44+
pluggy==1.3.0
45+
psutil==5.9.6
46+
py3dtiles==7.0.0
47+
Pygments==2.17.2
4548
pyproj==3.6.1
4649
pyproject_hooks==1.0.0
47-
pytest==7.3.1
50+
pytest==7.4.3
4851
pytest-cov==4.1.0
4952
python-dateutil==2.8.2
5053
pytz==2023.3.post1
51-
pyzmq==25.1.1
52-
readme-renderer==40.0
54+
pyzmq==25.1.2
55+
readme-renderer==42.0
5356
reearthcmsapi==0.0.3
5457
requests==2.31.0
5558
requests-toolbelt==1.0.0
5659
rfc3986==2.0.0
57-
rich==13.4.2
60+
rich==13.7.0
5861
shapely==2.0.1
5962
six==1.16.0
6063
snowballstemmer==2.2.0
61-
Sphinx==7.0.1
62-
sphinxcontrib-applehelp==1.0.4
63-
sphinxcontrib-devhelp==1.0.2
64-
sphinxcontrib-htmlhelp==2.0.1
64+
Sphinx==7.2.6
65+
sphinxcontrib-applehelp==1.0.7
66+
sphinxcontrib-devhelp==1.0.5
67+
sphinxcontrib-htmlhelp==2.0.4
6568
sphinxcontrib-jsmath==1.0.1
66-
sphinxcontrib-qthelp==1.0.3
67-
sphinxcontrib-serializinghtml==1.1.5
69+
sphinxcontrib-qthelp==1.0.6
70+
sphinxcontrib-serializinghtml==1.1.9
6871
tomli==2.0.1
6972
tqdm==4.65.0
7073
twine==4.0.2
71-
typing_extensions==4.6.3
74+
typing_extensions==4.9.0
7275
tzdata==2023.3
73-
urllib3==2.0.2
74-
webencodings==0.5.1
75-
zipp==3.15.0
76+
urllib3==2.0.7
77+
yarl==1.9.4
78+
zipp==3.17.0

Diff for: pyproject.toml

+2-5
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ classifiers = [
1111
"Development Status :: 2 - Pre-Alpha",
1212
"Programming Language :: Python :: 3",
1313
]
14-
version = "0.0.13"
14+
version = "0.0.14"
1515
dependencies = [
1616
"click",
1717
"numpy",
1818
"pandas",
1919
"Pillow",
20-
"py3dtiles @ git+https://gitlab.com/Oslandia/py3dtiles.git@489289d2f7310fbcb8e95710e250d893999adf5d",
20+
"py3dtiles",
2121
"pyproj",
2222
"requests",
2323
"reearthcmsapi",
@@ -34,9 +34,6 @@ keywords = ['plateau']
3434
[tool.hatch.build]
3535
exclude = ["tests/*"]
3636

37-
[tool.hatch.metadata]
38-
allow-direct-references = true
39-
4037
[project.urls]
4138
"Homepage" = "https://eukarya-inc.github.io/plateauutils/"
4239
"Bug Reports" = "https://github.com/eukarya-inc/plateauutils/issues"

Diff for: requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
click==8.1.3
22
reearthcmsapi==0.0.3
3-
numpy==1.22.4
4-
pandas==2.1.0
3+
numpy==1.26.2
4+
pandas==2.1.4
55
Pillow==10.0.1
6-
git+https://gitlab.com/Oslandia/py3dtiles.git@489289d2f7310fbcb8e95710e250d893999adf5d#egg=py3dtiles
6+
py3dtiles==7.0.0
77
pyproj==3.6.1
88
requests==2.31.0
99
shapely==2.0.1

0 commit comments

Comments
 (0)