Loading .gitlab-ci.ymldeleted 100644 → 0 +0 −7 Original line number Diff line number Diff line stages: # List of stages for jobs, and their order of execution - test pytest-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - echo "Not doing anything just yet" No newline at end of file pyproject.toml +2 −2 Original line number Diff line number Diff line [build-system] requires = ["flit_core >=3.2,<4", "xmlschema >= 2.0.0"] requires = ["flit_core >=3.2,<4"] build-backend = "flit_core.buildapi" [project] Loading @@ -9,6 +8,7 @@ authors = [{name = "Mark Canterbury", email = "markc@tencastle.com"}] license = {file = "LICENSE"} classifiers = ["License :: OSI Approved :: MIT License"] dynamic = ["version", "description"] dependencies = ["xmlschema >= 2"] [project.scripts] xmltest = "xmltest:xmltest_console" Loading src/xmltest/__init__.py +1 −1 Original line number Diff line number Diff line """XMLTest XML validation helper""" __version__ = "0.0.1" __version__ = "0.1a3" from typing import Sequence from argparse import ArgumentParser Loading Loading
.gitlab-ci.ymldeleted 100644 → 0 +0 −7 Original line number Diff line number Diff line stages: # List of stages for jobs, and their order of execution - test pytest-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - echo "Not doing anything just yet" No newline at end of file
pyproject.toml +2 −2 Original line number Diff line number Diff line [build-system] requires = ["flit_core >=3.2,<4", "xmlschema >= 2.0.0"] requires = ["flit_core >=3.2,<4"] build-backend = "flit_core.buildapi" [project] Loading @@ -9,6 +8,7 @@ authors = [{name = "Mark Canterbury", email = "markc@tencastle.com"}] license = {file = "LICENSE"} classifiers = ["License :: OSI Approved :: MIT License"] dynamic = ["version", "description"] dependencies = ["xmlschema >= 2"] [project.scripts] xmltest = "xmltest:xmltest_console" Loading
src/xmltest/__init__.py +1 −1 Original line number Diff line number Diff line """XMLTest XML validation helper""" __version__ = "0.0.1" __version__ = "0.1a3" from typing import Sequence from argparse import ArgumentParser Loading