Skip to content

Commit 2b5d583

Browse files
committed
Upgrade tpp libraries to their latest version
Signed-off-by: tdruez <[email protected]>
1 parent 3a333af commit 2b5d583

27 files changed

+169
-99
lines changed

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies = [
3737
# Django
3838
"Django==5.2.7",
3939
"asgiref==3.10.0",
40-
"typing_extensions==4.14.0",
40+
"typing_extensions==4.15.0",
4141
"sqlparse==0.5.3",
4242
# Django apps
4343
"django-crispy-forms==2.4",
@@ -56,7 +56,7 @@ dependencies = [
5656
"djangorestframework==3.16.1",
5757
# API documentation
5858
"drf-yasg==1.21.11",
59-
"uritemplate==4.1.1",
59+
"uritemplate==4.2.0",
6060
"inflection==0.5.1",
6161
"pytz==2025.2",
6262
# Track failed login attempts
@@ -74,7 +74,7 @@ dependencies = [
7474
"pyparsing==3.2.5",
7575
"async-timeout==5.0.1",
7676
"Deprecated==1.2.18",
77-
"wrapt==1.17.2",
77+
"wrapt==1.17.3",
7878
# Antivirus
7979
"clamd==1.0.2",
8080
# Testing
@@ -101,7 +101,7 @@ dependencies = [
101101
"charset-normalizer==3.4.3",
102102
"PyYAML==6.0.2",
103103
"cython==3.1.1",
104-
"zipp==3.22.0",
104+
"zipp==3.23.0",
105105
"XlsxWriter==3.2.9",
106106
# Markdown
107107
"markdown==3.9",
@@ -114,7 +114,8 @@ dependencies = [
114114
"requests-oauthlib==2.0.0",
115115
"defusedxml==0.7.1",
116116
# LDAP Auth
117-
"python-ldap==3.4.4",
117+
"python_ldap==3.4.5",
118+
"setuptools-scm==9.2.1",
118119
"pyasn1==0.6.1",
119120
"pyasn1-modules==0.4.2",
120121
"django-auth-ldap==5.2.0",
-369 KB
Binary file not shown.

thirdparty/dist/python-ldap-3.4.4.tar.gz.ABOUT

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
The python-ldap package is distributed under Python-style license.
2+
3+
Standard disclaimer
4+
This software is made available by the author(s) to the public for free
5+
and "as is". All users of this free software are solely and entirely
6+
responsible for their own choice and use of this software for their
7+
own purposes. By using this software, each user agrees that the
8+
author(s) shall not be liable for damages of any kind in relation to
9+
its use or performance. The author(s) do not warrant that this software
10+
is fit for any purpose.
379 KB
Binary file not shown.
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
about_resource: python_ldap-3.4.5.tar.gz
2+
name: python-ldap
3+
version: 3.4.5
4+
download_url: https://files.pythonhosted.org/packages/0c/88/8d2797decc42e1c1cdd926df4f005e938b0643d0d1219c08c2b5ee8ae0c0/python_ldap-3.4.5.tar.gz
5+
description: "Python modules for implementing LDAP clients\n---------------------------------------\n\
6+
python-ldap: LDAP client API for Python\n---------------------------------------\n\nWhat is\
7+
\ python-ldap?\n====================\n\npython-ldap provides an object-oriented API to access\
8+
\ LDAP\ndirectory servers from Python programs. Mainly it wraps the\nOpenLDAP client libs\
9+
\ for that purpose.\n\nAdditionally the package contains modules for other LDAP-related\n\
10+
stuff (e.g. processing LDIF, LDAPURLs, LDAPv3 sub-schema, etc.).\n\nNot included: Direct BER\
11+
\ support\n\nSee INSTALL for version compatibility\n\nSee TODO for planned features. Contributors\
12+
\ welcome.\n\nFor module documentation, see:\n\n\thttps://www.python-ldap.org/\n\nQuick usage\
13+
\ example:\n====================\n\n.. code-block:: python\n\n import ldap\n l = ldap.initialize(\"\
14+
ldap://my_ldap_server.my_domain\")\n l.simple_bind_s(\"\",\"\")\n l.search_s(\"o=My\
15+
\ Organisation, c=AU\", ldap.SCOPE_SUBTREE, \"objectclass=*\")\n\nSee directory ``Demo/``\
16+
\ of source distribution package for more\nexample code.\n\nAuthor(s) contact and documentation:\n\
17+
====================================\n\n https://www.python-ldap.org/\n\nIf you are looking\
18+
\ for help, please try the mailing list archives\nfirst, then send a question to the mailing\
19+
\ list.\nBe warned that questions will be ignored if they can be\ntrivially answered by referring\
20+
\ to the documentation.\n\nIf you are interested in helping, please contact the mailing list.\n\
21+
If you want new features or upgrades, please check the mailing list\narchives and then enquire\
22+
\ about any progress.\n\nAcknowledgements:\n=================\n\nThanks to Konstantin Chuguev\
23+
\ <Konstantin.Chuguev at dante.org.uk>\nand Steffen Ries <steffen.ries at sympatico.ca> for\
24+
\ working\non support for OpenLDAP 2.0.x features.\n\nThanks to Michael Stroeder <michael\
25+
\ at stroeder.com> for the\nmodules ``ldif``, ``ldapurl``, ``ldap/schema/*.py``, ``ldap/*.py``\
26+
\ and ``ldap/controls/*.py``.\n\nThanks to Hans Aschauer <Hans.Aschauer at Physik.uni-muenchen.de>\n\
27+
for the C wrapper schema and SASL support.\n\nThanks to Mauro Cicognini <mcicogni at siosistemi.it>\
28+
\ for the\nWIN32/MSVC6 bits, and the pre-built WIN32 ``ldap.pyd``.\n\nThanks to Waldemar Osuch\
29+
\ <waldemar.osuch at gmail.com> for contributing\nthe new-style docs based on reStructuredText.\n\
30+
\nThanks to Torsten Kurbad <torsten at tk-webart.de> for the\neasy_install support.\n\nThanks\
31+
\ to James Andrewartha <jamesa at daa.com.au> for\nsignificant contribution to ``Doc/*.tex``.\n\
32+
\nThanks to Rich Megginson <rmeggins at redhat.com> for extending\nsupport for LDAPv3 controls\
33+
\ and adding support for LDAPv3 extended\noperations.\n\nThanks to Peter Gietz, DAASI for\
34+
\ funding some control modules.\n\nThanks to Chris Mikkelson for various fixes and ldap.syncrepl.\n\
35+
\nThese very kind people have supplied patches or suggested changes:\n\n* Federico Di Gregorio\
36+
\ <fog at mixadlive.com>\n* John Benninghoff <johnb at netscape.com>\n* Donn Cave <donn at\
37+
\ u.washington.edu>\n* Jason Gunthorpe <jgg at debian.org>\n* gurney_j <gurney_j at 4j.lane.edu>\n\
38+
* Eric S. Johansson <esj at harvee.billerica.ma.us>\n* David Margrave <davidma at premier1.net>\n\
39+
* Uche Ogbuji <uche.ogbuji at fourthought.com>\n* Neale Pickett <neale at lanl.gov>\n* Blake\
40+
\ Weston <weston at platinum1.cambridge.scr.slb.com>\n* Wido Depping <wido.depping at gmail.com>\n\
41+
* Deepak Giridharagopal <deepak at arlut.utexas.edu>\n* Ingo Steuwer <steuwer at univention.de>\n\
42+
* Andreas Hasenack <ahasenack at terra.com.br>\n* Matej Vela <vela at debian.org>\n\nThese\
43+
\ people contributed to Python 3 porting (at https://github.com/pyldap/):\n\n* ​A. Karl Kornel\n\
44+
* Alex Willmer\n* Aymeric Augustin\n* Bradley Baetz\n* Christian Heimes\n* Dirk Mueller\n\
45+
* Jon Dufresne\n* Martin Basti\n* Miro Hrončok\n* Paul Aurich\n* Petr Viktorin\n* Pieterjan\
46+
\ De Potter\n* Raphaël Barrois\n* Robert Kuska\n* Stanislav Láznička\n* Tobias Bräutigam\n\
47+
* Tom van Dijk\n* Wentao Han\n* William Brown\n\nThanks to all the guys on the python-ldap\
48+
\ mailing list for\ntheir contributions and input into this package.\n\n Thanks! We may\
49+
\ have missed someone: please mail us if we have omitted\n your name.\n\nLicence\n=======\n\
50+
\nThe python-ldap project comes with a LICENCE file.\n\nWe are aware that its text is unclear,\
51+
\ but it cannot be changed:\nall authors of python-ldap would need to approve the licence\
52+
\ change,\nbut a complete list of all the authors is not available.\n(Note that the Git repository\
53+
\ of the project is incomplete.\nFurthermore, commits imported from CVS lack authorship information;\
54+
\ users\n\"stroeder\" or \"leonard\" are commiters (reviewers), but sometimes not\nauthors\
55+
\ of the committed code.)\n\nThe current maintainers assume that the license is the sentence\
56+
\ that refers\nto \"Python-style license\" and assume this means a highly permissive open\
57+
\ source\nlicense that only requires preservation of the text of the LICENCE file\n(including\
58+
\ the disclaimer paragraph).\n\n-------------------------------------------------------------------------------\n\
59+
\nAll contributions committed since July 1st, 2021, as well as some past\ncontributions, are\
60+
\ licensed under the MIT license.\nThe MIT licence and more details are listed in the file\
61+
\ LICENCE.MIT."
62+
homepage_url: https://www.python-ldap.org/
63+
package_url: pkg:pypi/[email protected]
64+
license_expression: python-ldap AND python
65+
copyright: Copyright python-ldap contributors
66+
attribute: yes
67+
track_changes: yes
68+
checksum_md5: ed363c1fa9767f865dcb18c7bcc9f931
69+
checksum_sha1: 7a2dcfcf68019f15d7aa71f2a527494b8bf0fb29
70+
licenses:
71+
- key: python
72+
name: Python Software Foundation License v2
73+
file: python.LICENSE
74+
- key: python-ldap
75+
name: Python ldap License
76+
file: python-ldap.LICENSE
61.4 KB
Binary file not shown.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
about_resource: setuptools_scm-9.2.1-py3-none-any.whl
2+
name: setuptools-scm
3+
version: 9.2.1
4+
download_url: https://files.pythonhosted.org/packages/11/cc/5fda7ed3aab0814a86e428846b6b386f55093f4621d86e3cd081ae126c27/setuptools_scm-9.2.1-py3-none-any.whl
5+
package_url: pkg:pypi/[email protected]
6+
license_expression: mit
7+
copyright: Copyright setuptools-scm project contributors
8+
attribute: yes
9+
checksum_md5: e4c0d7fca880d0a7e780bbb160de767b
10+
checksum_sha1: c955676a734eac2a836b5870c23c594511ada06f
11+
licenses:
12+
- key: mit
13+
name: MIT License
14+
file: mit.LICENSE
-42.8 KB
Binary file not shown.

thirdparty/dist/typing_extensions-4.14.0-py3-none-any.whl.ABOUT

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)