Skip to content

Commit 9170861

Browse files
committed
#66: Loosened constraint for dependency numpy
1 parent aa70416 commit 9170861

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.github/workflows/pypi_release.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Setup Python & Poetry Environment
20-
uses: exasol/python-toolbox/.github/actions/python-environment@1.1.0
20+
uses: exasol/python-toolbox/.github/actions/python-environment@v1
2121
with:
2222
python-version: "3.10"
23-
poetry-version: '2.1.2'
23+
poetry-version: "2.1.2"
2424

2525
- name: Build Artifacts
2626
run: poetry build
@@ -36,5 +36,6 @@ jobs:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
run: >
3838
gh release create ${GITHUB_REF_NAME}
39-
--title ${GITHUB_REF_NAME} -F "./doc/changes/changes_${GITHUB_REF_NAME}.md"
39+
--title ${GITHUB_REF_NAME}
40+
--notes-file ./doc/changes/changes_${GITHUB_REF_NAME}.md
4041
dist/*

doc/changes/unreleased.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# UDF Mock Python <version TBD>, released <date TBD>
22

3+
## Summary
4+
5+
This release loosens the constraints for dependency `numpy` as python 3.13 is only available for numpy versions >2.
6+
37
### Refactorings
48

5-
* #64: Update to poetry 2.1.2
9+
* #64: Update to poetry 2.1.2
10+
* #66: Loosen numpy constraint

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ requires-poetry = ">=2.1.0"
2020

2121
[tool.poetry.dependencies]
2222
pandas = "^2.2.3"
23-
numpy = ">=1.26.4,<2"
23+
numpy = ">=1.26.4,<3"
2424

2525
[tool.poetry.group.dev.dependencies]
2626
pytest = "^8.2.2"

0 commit comments

Comments
 (0)