diff --git a/.gitignore b/.gitignore index 3880aa1..55ad55e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,5 @@ __pycache__/ /build/ /dist/ /*.egg-info/ - env/ - drone diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index e88d6fb..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,29 +0,0 @@ -stages: - - lint - - build - - test - -default: - image: maxkratz/python-custom:3.6 - -pylint: - stage: lint - script: - - pylint-fail-under --fail_under 9.0 -d pep8 matrix_synapse_saml_mapper/*.py setup.py - -build: - stage: build - script: - - python setup.py sdist bdist_wheel - artifacts: - name: "$CI_JOB_NAME" - when: always - paths: - - build - - dist - - matrix_synapse_saml_mapper.egg-info - -install: - stage: test - script: - - python setup.py install diff --git a/setup.py b/setup.py index 1709263..4514eb3 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="matrix-synapse-saml-mapper", - version="0.1.0", + version="0.2.0", author="Max Kratz", author_email="mkratz@fs-etit.de", description="Custom SAML mapping provider for synapse installations",