forked from pool/python-textX
- update to version 2.2.0:
- Added: - Initial docs for Jinja code generator support (from [textX-jinja](https://github.com/textX/textX-jinja)) ([#264]). - Analyzing grammars programmatically as plain textX models (`grammar_model_from_str/file`) ([#235]) - Initial `startproject` scaffolding (from [textX-dev](https://github.com/textX/textX-dev)) docs ([#234]) - Generator helper functions `get_output_filename` and `gen_file` ([#233]) - `textx version` command ([#219]) - Versions for languages/packages in `list-languages` and `list-generators` commands ([#228]) - Added the ability to specify extra parameters during `model_from_file` or `model_from_str` and to define which extra parameters exist in the meta-model ([#243]). - Fixed: - Fixed several instances of invalid truthiness checking. Thanks markusschmaus@GitHub ([#250]) - Fixed applying multiple grammar rule modifiers ([#246]) - Fixed exception on calling `check` CLI command with relative path name. - Fixed return value of textx generate and check commands: we return a failure on error now ([#222]) - Fixed type checking for references to builtin elements ([#218]) - Changed: - User classes can now be immutable (e.g. `attr.frozen`) or can use `__slots__`. Thanks markusschmaus@GitHub ([#256, #260, #261]) - Cleanup of setup configuration and install scripts [#231] - Dot/PlantUML rendering of meta-models: remove rendering of base types, improve rendering of required/optional, render match rules as a single table. ([#225]) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-textX?expand=0&rev=27
This commit is contained in:
committed by
Git OBS Bridge
parent
8959b67229
commit
4d535fb634
27
fix_tests_setupcfg.patch
Normal file
27
fix_tests_setupcfg.patch
Normal file
@@ -0,0 +1,27 @@
|
||||
From f804ff0864c65caaf8a3356357024639aa785911 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Wagner <sebix@sebix.at>
|
||||
Date: Sat, 8 Aug 2020 10:07:07 +0200
|
||||
Subject: [PATCH] fix setup.cfg in flow_dsl project to include data
|
||||
|
||||
copy and paste error causes necessary data to be not included in builds
|
||||
---
|
||||
CHANGELOG.md | 2 ++
|
||||
tests/functional/registration/projects/flow_dsl/setup.cfg | 4 ++--
|
||||
2 files changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/tests/functional/registration/projects/flow_dsl/setup.cfg b/tests/functional/registration/projects/flow_dsl/setup.cfg
|
||||
index e9e6f366..aec061de 100644
|
||||
--- a/tests/functional/registration/projects/flow_dsl/setup.cfg
|
||||
+++ b/tests/functional/registration/projects/flow_dsl/setup.cfg
|
||||
@@ -8,8 +8,8 @@ install_requires =
|
||||
textX
|
||||
|
||||
[options.package_data]
|
||||
-data_dsl = *.tx
|
||||
+flow_dsl = *.tx
|
||||
|
||||
[options.entry_points]
|
||||
textx_languages =
|
||||
- flow_dsl = flow_dsl:flow_dsl
|
||||
\ No newline at end of file
|
||||
+ flow_dsl = flow_dsl:flow_dsl
|
Reference in New Issue
Block a user