Compare commits
10 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5a6c89589e | ||
![]() |
785b32c5f0 | ||
![]() |
d1d181bb43 | ||
![]() |
253791134a | ||
![]() |
edbe306bdf | ||
![]() |
dfe820455b | ||
![]() |
69e2720e93 | ||
![]() |
d44c693080 | ||
![]() |
46c07567fe | ||
![]() |
adbf48ba57 |
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -5,6 +5,31 @@ All notable changes to rattail-nationbuilder will be documented in this file.
|
|||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## v0.3.4 (2024-08-19)
|
||||
|
||||
### Fix
|
||||
|
||||
- avoid deprecated method in app provider
|
||||
- avoid deprecated base class for config extension
|
||||
|
||||
## v0.3.3 (2024-08-19)
|
||||
|
||||
### Fix
|
||||
|
||||
- avoid deprecated import for `parse_list()`
|
||||
|
||||
## v0.3.2 (2024-08-13)
|
||||
|
||||
### Fix
|
||||
|
||||
- update app provider entry point, per wuttjamaican
|
||||
|
||||
## v0.3.1 (2024-07-01)
|
||||
|
||||
### Fix
|
||||
|
||||
- remove legacy command definitions
|
||||
|
||||
## v0.3.0 (2024-06-10)
|
||||
|
||||
### Feat
|
||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "rattail-nationbuilder"
|
||||
version = "0.3.0"
|
||||
version = "0.3.4"
|
||||
description = "Rattail integration package for NationBuilder"
|
||||
readme = "README.md"
|
||||
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
||||
|
@ -27,10 +27,6 @@ dependencies = [
|
|||
]
|
||||
|
||||
|
||||
[project.entry-points."rattail.subcommands"]
|
||||
import-nationbuilder = "rattail_nationbuilder.commands:ImportNationBuilder"
|
||||
|
||||
|
||||
[project.entry-points."rattail.typer_imports"]
|
||||
rattail_nationbuilder = "rattail_nationbuilder.commands"
|
||||
|
||||
|
@ -43,14 +39,14 @@ rattail_nationbuilder = "rattail_nationbuilder.config:RattailNationBuilderExtens
|
|||
"to_rattail.from_nationbuilder.import" = "rattail_nationbuilder.importing.nationbuilder:FromNationBuilderToRattail"
|
||||
|
||||
|
||||
[project.entry-points."rattail.providers"]
|
||||
[project.entry-points."wutta.app.providers"]
|
||||
rattail_nationbuilder = "rattail_nationbuilder.app:NationBuilderProvider"
|
||||
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://rattailproject.org"
|
||||
Repository = "https://kallithea.rattailproject.org/rattail-project/rattail-nationbuilder"
|
||||
Changelog = "https://kallithea.rattailproject.org/rattail-project/rattail-nationbuilder/files/master/CHANGELOG.md"
|
||||
Repository = "https://forgejo.wuttaproject.org/rattail/rattail-nationbuilder"
|
||||
Changelog = "https://forgejo.wuttaproject.org/rattail/rattail-nationbuilder/src/branch/master/CHANGELOG.md"
|
||||
|
||||
|
||||
[tool.commitizen]
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2023 Lance Edgar
|
||||
# Copyright © 2010-2024 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -36,7 +36,7 @@ class NationBuilderProvider(RattailProvider):
|
|||
if 'nationbuilder' not in self.handlers:
|
||||
spec = self.config.get('rattail', 'nationbuilder.handler',
|
||||
default='rattail_nationbuilder.app:NationBuilderHandler')
|
||||
factory = self.load_object(spec)
|
||||
factory = self.app.load_object(spec)
|
||||
self.handlers['nationbuilder'] = factory(self.config, **kwargs)
|
||||
return self.handlers['nationbuilder']
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ rattail-nationbuilder commands
|
|||
|
||||
import typer
|
||||
|
||||
from rattail.commands import rattail_typer, ImportSubcommand
|
||||
from rattail.commands import rattail_typer
|
||||
from rattail.commands.typer import importer_command, typer_get_runas_user
|
||||
from rattail.commands.importing import ImportCommandHandler
|
||||
|
||||
|
@ -46,12 +46,3 @@ def import_nationbuilder(
|
|||
config, import_handler_key='to_rattail.from_nationbuilder.import')
|
||||
kwargs['user'] = typer_get_runas_user(ctx)
|
||||
handler.run(kwargs, progress=progress)
|
||||
|
||||
|
||||
class ImportNationBuilder(ImportSubcommand):
|
||||
"""
|
||||
Import data for NationBuilder => Rattail
|
||||
"""
|
||||
name = 'import-nationbuilder'
|
||||
description = __doc__.strip()
|
||||
handler_key = 'to_rattail.from_nationbuilder.import'
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2023 Lance Edgar
|
||||
# Copyright © 2010-2024 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -24,10 +24,10 @@
|
|||
Config Extension
|
||||
"""
|
||||
|
||||
from rattail.config import ConfigExtension
|
||||
from wuttjamaican.conf import WuttaConfigExtension
|
||||
|
||||
|
||||
class RattailNationBuilderExtension(ConfigExtension):
|
||||
class RattailNationBuilderExtension(WuttaConfigExtension):
|
||||
"""
|
||||
Config extension for rattail-nationbuilder
|
||||
"""
|
||||
|
@ -36,7 +36,7 @@ class RattailNationBuilderExtension(ConfigExtension):
|
|||
def configure(self, config):
|
||||
|
||||
# rattail import-nationbuilder
|
||||
config.setdefault('rattail.importing', 'to_rattail.from_nationbulder.import.default_handler',
|
||||
config.setdefault('rattail.importing.to_rattail.from_nationbulder.import.default_handler',
|
||||
'rattail_nationbuilder.importing.nationbuilder:FromNationBuilderToRattail')
|
||||
config.setdefault('rattail.importing', 'to_rattail.from_nationbuilder.import.default_cmd',
|
||||
config.setdefault('rattail.importing.to_rattail.from_nationbuilder.import.default_cmd',
|
||||
'rattail import-nationbuilder')
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2023 Lance Edgar
|
||||
# Copyright © 2010-2024 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -27,9 +27,10 @@ NationBuilder cache tables
|
|||
import sqlalchemy as sa
|
||||
from sqlalchemy import orm
|
||||
|
||||
from wuttjamaican.util import parse_list
|
||||
|
||||
from rattail.db import model
|
||||
from rattail.db.util import normalize_full_name
|
||||
from rattail.config import parse_list
|
||||
|
||||
|
||||
class NationBuilderCachePerson(model.Base):
|
||||
|
|
Loading…
Reference in a new issue