Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove links to v0.14.3 docs #213

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,17 @@ databases with Python.

---

## Version 1.0 coming soon!

The code for ETL Helper version 1.0 has now been merged into `main`, although not yet deployed to PyPI.
It contains many breaking changes.
The [documentation pages](https://britishgeologicalsurvey.github.io/etlhelper/) now correspond to the upcoming version 1.0.
Specify a [release candidate tag](https://pypi.org/project/etlhelper/#history) or use `--pre` flag with `pip` to install pre-release versions.

## Installation

ETL Helper is available on PyPI (version 0.14.3).
Documentation for v0.14.3 is [here](https://github.com/BritishGeologicalSurvey/etlhelper/tree/v0.14.3#readme).
ETL Helper is available on PyPI.

```bash
pip install etlhelper
```

Database driver packages are not included by default and should be specified in square brackets. Options are oracle (installs oracledb), mssql (installs pyodbc) and postgres (installs psycopg2). Multiple values can be separated by commas.
Database driver packages are not included by default and should be specified in square brackets.
Options are `oracle` (installs [oracledb](https://pypi.org/project/oracledb/)), `mssql` (installs [pyodbc](https://pypi.org/project/pyodbc/)) and `postgres` (installs [psycopg2](https://pypi.org/project/psycopg2/)).
Multiple values can be separated by commas.

```bash
pip install etlhelper[oracle,postgres]
Expand Down