Skip to content

Commit 56b7e4b

Browse files
authored
Merge pull request #143 from alan-turing-institute/bump-version
0.3.2 -> 0.3.3
2 parents 130a156 + b3237bd commit 56b7e4b

File tree

5 files changed

+1
-32
lines changed

5 files changed

+1
-32
lines changed

.github/workflows/pre-commit.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,6 @@ jobs:
4040
shell: bash
4141
if: steps.poetry-cache.outputs.cache-hit != 'true'
4242
run: |
43-
# workaround start
44-
# this is a pyyaml v5 vs cython v3 conflict workaround
45-
# see https://github.com/alan-turing-institute/sqlsynthgen/issues/120
46-
python -m poetry run pip install "cython<3"
47-
python -m poetry run pip install wheel
48-
python -m poetry run pip install --no-build-isolation "pyyaml==5.4.1"
49-
# workaround end
5043
python -m poetry install --all-extras
5144
- name: Install Pre-Commit
5245
shell: bash

.github/workflows/tests.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,6 @@ jobs:
4646
shell: bash
4747
if: steps.poetry-cache.outputs.cache-hit != 'true'
4848
run: |
49-
# workaround start
50-
# this is a pyyaml v5 vs cython v3 conflict workaround
51-
# see https://github.com/alan-turing-institute/sqlsynthgen/issues/120
52-
python -m poetry run pip install "cython<3"
53-
python -m poetry run pip install wheel
54-
python -m poetry run pip install --no-build-isolation "pyyaml==5.4.1"
55-
# workaround end
5649
python -m poetry install --all-extras
5750
- name: Create src database
5851
shell: bash

.readthedocs.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ build:
1414
# nodejs: "19"
1515
# rust: "1.64"
1616
# golang: "1.19"
17-
jobs:
18-
# This pre-install job is a pyyaml v5 vs cython v3 conflict workaround
19-
# see https://github.com/alan-turing-institute/sqlsynthgen/issues/120
20-
pre_install:
21-
- pip install "cython<3"
22-
- pip install wheel
23-
- pip install --no-build-isolation "pyyaml==5.4.1"
2417

2518
# Build documentation in the docs/ directory with Sphinx
2619
sphinx:

docs/source/installation.rst

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,6 @@ To use SqlSynthGen, first install it:
1212
1313
$ pip install sqlsynthgen
1414
15-
16-
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):
17-
18-
.. code-block:: console
19-
20-
pip install "cython<3"
21-
pip install wheel
22-
pip install --no-build-isolation "pyyaml==5.4.1"
23-
pip install sqlsynthgen
24-
2515
Check that you can view the help message with:
2616

2717
.. code-block:: console

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sqlsynthgen"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
description = "Synthetic SQL data generator"
55
authors = ["Iain <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)