Skip to content

Commit e13fc09

Browse files
committed
try to build with correct features
1 parent 5679182 commit e13fc09

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ jobs:
7171
- run: poetry run maturin build --release -m Cargo.toml -F python
7272
- run: pip install --no-index --find-links=target/wheels/ reasonable
7373
- run: rm -r target/wheels
74-
- run: poetry run maturin publish --no-sdist --universal2 -m Cargo.toml -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}
75-
- run: poetry run maturin publish --no-sdist -m Cargo.toml -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}
74+
- run: poetry run maturin publish --no-sdist --universal2 -m Cargo.toml -u __token__ -p ${{ secrets.PYPI_API_TOKEN }} -F python
75+
- run: poetry run maturin publish --no-sdist -m Cargo.toml -u __token__ -p ${{ secrets.PYPI_API_TOKEN }} -F python
7676
- uses: softprops/action-gh-release@v1
7777
with:
7878
files: target/wheels/*.whl
@@ -98,7 +98,7 @@ jobs:
9898
- run: poetry run maturin build --release -m Cargo.toml -F python
9999
- run: pip install --no-index --find-links=target/wheels/ reasonable
100100
- run: rm -r target/wheels
101-
- run: poetry run maturin publish --no-sdist -m Cargo.toml -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}
101+
- run: poetry run maturin publish --no-sdist -m Cargo.toml -u __token__ -p ${{ secrets.PYPI_API_TOKEN }} -F python
102102
- uses: softprops/action-gh-release@v1
103103
with:
104104
files: target/wheels/*.whl
@@ -123,7 +123,7 @@ jobs:
123123
- run: poetry run maturin build --release -m Cargo.toml -F python
124124
- run: pip install --no-index --find-links=target/wheels/ reasonable
125125
- run: rm -r target/wheels
126-
- run: poetry run maturin sdist -m Cargo.toml
126+
- run: poetry run maturin sdist -m Cargo.toml -F python
127127
- uses: pypa/gh-action-pypi-publish@release/v1
128128
with:
129129
user: __token__

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reasonable"
3-
version = "0.2.0"
3+
version = "0.2.1-alpha1"
44
authors = ["Gabe Fierro <[email protected]>"]
55
repository = "https://github.com/gtfierro/reasonable"
66
homepage = "https://brickschema.org/"

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 = "reasonable"
3-
version = "0.2.0"
3+
version = "0.2.1-a1"
44
description = "Python interface to 'reasonable', a Datalog implementation of the OWL 2 RL profile"
55
authors = ["Gabe Fierro <[email protected]>"]
66
license = "bsd-3-clause"

0 commit comments

Comments
 (0)