Skip to content

Commit 12327e4

Browse files
authored
Update project name and urls after repository rename (#2)
* Update README.md * Update urls in pyproject.toml
1 parent 05e0600 commit 12327e4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ In any case, you need to verify your UDFs with integrations test inside the data
1212

1313
### Installing via pip
1414
```
15-
pip install git+https://github.com/exasol/exasol-udf-mock-python.git@master
15+
pip install git+https://github.com/exasol/udf-mock-python.git@master
1616
```
1717

1818
### Installing via poetry
1919
Add it to your `tool.poetry.dependencies` or `tool.poetry.dev-dependencies`
2020

2121
```
2222
[tool.poetry.dev-dependencies]
23-
exasol-udf-mock-python = { git = "https://github.com/exasol/exasol-udf-mock-python.git", branch = "master" }
23+
exasol-udf-mock-python = { git = "https://github.com/exasol/udf-mock-python.git", branch = "master" }
2424
...
2525
```
2626

@@ -84,4 +84,4 @@ feature and might get removed by later releases:
8484
you need create your own container for testing inside of the database
8585
- Does not emulate the ressource limitations which get a applied in the database
8686
- Only one instance of the UDF gets executed
87-
- No support for Python2, because Python2 is officially End of Life
87+
- No support for Python2, because Python2 is officially End of Life

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Installing via pip
1818

1919
.. code-block::
2020
21-
pip install git+https://github.com/exasol/exasol-udf-mock-python.git@master
21+
pip install git+https://github.com/exasol/udf-mock-python.git@master
2222
2323
Installing via poetry
2424
^^^^^^^^^^^^^^^^^^^^^
@@ -28,7 +28,7 @@ Add it to your ``tool.poetry.dependencies`` or ``tool.poetry.dev-dependencies``
2828
.. code-block::
2929
3030
[tool.poetry.dev-dependencies]
31-
exasol-udf-mock-python = { git = "https://github.com/exasol/exasol-udf-mock-python.git", branch = "master" }
31+
exasol-udf-mock-python = { git = "https://github.com/exasol/udf-mock-python.git", branch = "master" }
3232
...
3333
3434
How to use the Mock

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ authors = [
1111

1212
readme = 'README.md'
1313

14-
repository = "https://github.com/exasol/exasol-udf-mock-python"
15-
homepage = "https://github.com/exasol/exasol-udf-mock-python"
14+
repository = "https://github.com/exasol/udf-mock-python"
15+
homepage = "https://github.com/exasol/udf-mock-python"
1616

1717
keywords = ['exasol', 'udf', 'mock', 'testing']
1818

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
version='0.1.0',
2828
description='Mocking framework for Exasol Python UDFs',
2929
python_requires='==3.*,>=3.6.9',
30-
project_urls={"homepage": "https://github.com/exasol/exasol-udf-mock-python", "repository": "https://github.com/exasol/exasol-udf-mock-python"},
30+
project_urls={"homepage": "https://github.com/exasol/udf-mock-python", "repository": "https://github.com/exasol/udf-mock-python"},
3131
author='Torsten Kilias',
3232
author_email='torsten.kilias@exasol.com',
3333
license='MIT',

0 commit comments

Comments
 (0)