Skip to content

Commit 725cc85

Browse files
authored
remove migration workflow for older .ini based format (#131)
1 parent 9fc87dd commit 725cc85

File tree

4 files changed

+0
-171
lines changed

4 files changed

+0
-171
lines changed

README.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,6 @@ with open('output.xml', 'wb') as ff:
9292
ff.write(xml_string)
9393
```
9494

95-
## Migration
96-
97-
### Migrating old MCFs to YAML
98-
99-
pygeometa provides a `migrate` utility to convert legacy MCFs into YAML:
100-
101-
```bash
102-
pygeometa migrate --mcf=path/to/file.mcf # to stdout
103-
pygeometa migrate --mcf=path/to/file.mcf --output=some_file.yml # to file
104-
```
105-
The migrate utility doesn't support migrating comments from legacy MCFs tox
106-
YAML MCFs.
107-
10895
## Development
10996

11097
### Setting up a Development Environment

docs/content/tutorial.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,6 @@ pygeometa generate-metadata --mcf=path/to/file.yml --schema=iso19139 --output=so
5757
pygeometa generate-metadata --mcf=path/to/file.yml --schema_local=/path/to/my-schema --output=some_file.xml # to file
5858
```
5959

60-
### Migration
61-
62-
#### Migrating old MCFs to YAML
63-
64-
pygeometa provides a `migrate` utility to convert legacy MCFs into YAML:
65-
66-
```bash
67-
pygeometa migrate --mcf=path/to/file.mcf # to stdout
68-
pygeometa migrate --mcf=path/to/file.mcf --output=some_file.yml # to file
69-
```
70-
The migrate utility doesn't support migrating comments from legacy MCFs to
71-
YAML MCFs.
72-
7360
## For Developers
7461

7562
### Installation

pygeometa/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
import click
4848

4949
from pygeometa.core import generate_metadata, info, schemas
50-
from pygeometa.migrations import migrate
5150

5251
__version__ = '0.6.dev0'
5352

@@ -61,4 +60,3 @@ def cli():
6160
cli.add_command(generate_metadata)
6261
cli.add_command(info)
6362
cli.add_command(schemas)
64-
cli.add_command(migrate)

pygeometa/migrations.py

Lines changed: 0 additions & 143 deletions
This file was deleted.

0 commit comments

Comments
 (0)