Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
1551cc9
Use webresource for resource registration
rnixx Jun 11, 2022
7eb45cd
resources WIP
rnixx Jun 11, 2022
2865e6a
Update buildout config
rnixx Oct 5, 2022
3875c9d
Sync with master
rnixx Nov 30, 2022
8edd8a8
Merge branch 'master' into webresource
rnixx Dec 5, 2022
b35aef9
use cone.app resource registry
rnixx Dec 10, 2022
9b58521
Adopt UGM base test class names
rnixx May 5, 2023
ae2f1c1
Adopt settings ui
rnixx Jan 12, 2024
448edec
Add settings icons
rnixx Jan 12, 2024
8e6a05f
Fix tests
rnixx Jan 12, 2024
9943347
Update Changelog
rnixx Jan 14, 2024
2566038
Merge pull request #4 from conestack/settings-ui
rnixx Jan 14, 2024
3789e3e
Add proper CSS class to settings form templates
rnixx Jan 15, 2024
58d1620
Basic mxmake setup
rnixx Nov 20, 2024
27a6aa9
Makefile settings, custom targets, prepare for pytest
rnixx Nov 20, 2024
ec764cb
fix custom make targets. install waitress in dev environment
rnixx Nov 20, 2024
25ab3a9
Install system dependencies in test runner
rnixx Nov 20, 2024
4097efe
Drop 3.13 tests for now
rnixx Nov 20, 2024
9fb43b3
dependency targets
rnixx Nov 20, 2024
f194a17
Refactor package layout to modern Python packaging
rnixx Oct 21, 2025
1d79895
Use hatchling instead of setuptools
rnixx Oct 21, 2025
ab7d13f
add tool.hatch.build.targets.wheel sections
rnixx Oct 21, 2025
a43220e
include manifest info to pyproject.toml
rnixx Oct 21, 2025
5d46b85
Remove MANIFEST.in and update to Python 3.10-3.14
rnixx Oct 22, 2025
2094c65
Update package versions.
rnixx Nov 3, 2025
5f44521
Add pytest namespace packahe handling options
rnixx Nov 3, 2025
ae3cdd5
remove __init__ file from tests folder
rnixx Nov 4, 2025
ea3d309
pin versions in pyproject.toml
lenadax Nov 4, 2025
64a6322
Merge mxmake branch
rnixx Nov 4, 2025
b24f2a4
ci
rnixx Nov 4, 2025
f45a950
another attempt
rnixx Nov 4, 2025
17ac4fe
Add yafowil.lingua to mx.ini
rnixx Nov 4, 2025
8cd1dfd
Remove unused setting from mx.ini
rnixx Nov 4, 2025
47503da
add hatch-fancy-pypi-readme. update webresource branch
lenadax Nov 11, 2025
4942ee4
remove obsolete lines in pyproject.toml
lenadax Nov 13, 2025
1bf2fb5
Update ignores
rnixx Nov 23, 2025
0b4e0d9
remove unnecessary files from build
lenadax Nov 25, 2025
2cebce2
define fancy-pypi-readme fragments as regular array
lenadax Nov 27, 2025
054af69
add node.ext.ldap to test requirements
lenadax Nov 28, 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
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test cone.ldap

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: Install system dependencies
run: make system-dependencies

- name: Install project
run: make install

- name: Run tests an collect code coverage
run: make coverage
23 changes: 9 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
*.egg-info
*.pyc
/.installed.cfg
/.mr.developer.cfg
/bin/
/coverage/
/develop-eggs/
/devsrc/
/.coverage
/.mxmake/
/build/
/constraints-mxdev.txt
/dist/
/eggs/
/include/
/lib/
/local/
/parts/
/pyvenv.cfg
/share/
/src/cone.ldap.egg-info/
/openldap/
/requirements-mxdev.txt
/sources/
/venv/
46 changes: 0 additions & 46 deletions .travis.yml

This file was deleted.

10 changes: 7 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
Changes
=======

0.3 (unreleased)
----------------
1.1.0 (unreleased)
------------------

- Adopt Settings UI changes from ``cone.app``.
[rnix]

- Nothing changed yet.
- Use ``webresource`` for resource registration.
[rnix]


0.2 (2022-12-05)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ License
=======

Copyright (c) 2019-2021, BlueDynamics Alliance, Austria
Copyright (c) 2021-2022, Cone Contributors
Copyright (c) 2021-2025, Cone Contributors
All rights reserved.

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

This file was deleted.

Loading
Loading