Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 0 additions & 7 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,6 @@ jobs:
shell: bash
if: steps.poetry-cache.outputs.cache-hit != 'true'
run: |
# workaround start
# this is a pyyaml v5 vs cython v3 conflict workaround
# see https://github.com/alan-turing-institute/sqlsynthgen/issues/120
python -m poetry run pip install "cython<3"
python -m poetry run pip install wheel
python -m poetry run pip install --no-build-isolation "pyyaml==5.4.1"
# workaround end
python -m poetry install --all-extras
- name: Install Pre-Commit
shell: bash
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,6 @@ jobs:
shell: bash
if: steps.poetry-cache.outputs.cache-hit != 'true'
run: |
# workaround start
# this is a pyyaml v5 vs cython v3 conflict workaround
# see https://github.com/alan-turing-institute/sqlsynthgen/issues/120
python -m poetry run pip install "cython<3"
python -m poetry run pip install wheel
python -m poetry run pip install --no-build-isolation "pyyaml==5.4.1"
# workaround end
python -m poetry install --all-extras
- name: Create src database
shell: bash
Expand Down
7 changes: 0 additions & 7 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@ build:
# nodejs: "19"
# rust: "1.64"
# golang: "1.19"
jobs:
# This pre-install job is a pyyaml v5 vs cython v3 conflict workaround
# see https://github.com/alan-turing-institute/sqlsynthgen/issues/120
pre_install:
- pip install "cython<3"
- pip install wheel
- pip install --no-build-isolation "pyyaml==5.4.1"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
10 changes: 0 additions & 10 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,6 @@ To use SqlSynthGen, first install it:

$ pip install sqlsynthgen


If Pip errors when installing PyYaml, you will need to manually specify the Cython version and manually install PyYaml (this is a temporary workaround for a PyYaml v5 conflict with Cython v3, see `here <https://github.com/yaml/pyyaml/issues/601>`_ for full details):

.. code-block:: console

pip install "cython<3"
pip install wheel
pip install --no-build-isolation "pyyaml==5.4.1"
pip install sqlsynthgen

Check that you can view the help message with:

.. code-block:: console
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sqlsynthgen"
version = "0.3.2"
version = "0.3.3"
description = "Synthetic SQL data generator"
authors = ["Iain <25081046+Iain-S@users.noreply.github.com>"]
license = "MIT"
Expand Down