Skip to content

Commit 8593e7d

Browse files
committed
Remove upper bound constraints, update workflow
1 parent 1e950c6 commit 8593e7d

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install test dependencies
4141
run: |
4242
poetry self add poetry-plugin-export
43-
poetry export -f requirements.txt --with dev,nbtools --without-hashes --output requirements-dev.txt
43+
poetry export -f requirements.txt --with dev --without-hashes --output requirements-dev.txt
4444
echo "numpy${{ matrix.numpy-version }}" >> constraints.txt
4545
uv pip compile requirements-dev.txt --output-file requirements.txt \
4646
--python-version ${{ matrix.python-version }} \

pyproject.toml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Bayesian Optimization package"
55
authors = [{ name = "Fernando Nogueira", email = "[email protected]" }]
66
license = { file = "LICENSE" }
77
readme = "README.md"
8-
requires-python = ">=3.9,<4.0"
8+
requires-python = ">=3.9"
99
classifiers = [
1010
"License :: OSI Approved :: MIT License",
1111
"Programming Language :: Python",
@@ -17,31 +17,31 @@ classifiers = [
1717
"Programming Language :: Python :: 3.13",
1818
]
1919
dependencies = [
20-
"colorama>=0.4.6,<1.0.0",
20+
"colorama>=0.4.6",
2121
"numpy>=1.25; python_version<'3.13'",
2222
"numpy>=2.1.3; python_version>='3.13'",
23-
"scikit-learn>=1.0.0,<2.0.0",
24-
"scipy>=1.0.0,<2.0.0; python_version<'3.13'",
25-
"scipy>=1.14.1,<2.0.0; python_version>='3.13'",
23+
"scikit-learn>=1.0.0",
24+
"scipy>=1.0.0; python_version<'3.13'",
25+
"scipy>=1.14.1; python_version>='3.13'",
2626
]
2727

2828
[project.optional-dependencies]
2929
dev = [
30-
"coverage>=7.4.1,<8.0",
31-
"jupyter>=1.0.0,<2.0",
32-
"matplotlib>=3.0,<4.0",
33-
"nbconvert>=7.14.2,<8.0",
34-
"nbformat>=5.9.2,<6.0",
35-
"nbsphinx>=0.9.4,<1.0",
36-
"pre-commit>=3.7.1,<4.0",
37-
"pytest>=8.0.0,<9.0",
38-
"pytest-cov>=4.1.0,<5.0",
39-
"ruff==0.6.6",
40-
"sphinx-immaterial>=0.12.0,<1.0",
41-
"sphinx>=7.0.0,<8.0; python_version<'3.10'",
42-
"sphinx>=8.0.0,<9.0; python_version>='3.10'",
43-
"sphinx-autodoc-typehints>=2.3.0,<3.0; python_version<'3.10'",
44-
"sphinx-autodoc-typehints>=2.4.0,<3.0; python_version>='3.10'",
30+
"coverage>=7.4.1",
31+
"jupyter>=1.0.0",
32+
"matplotlib>=3.0",
33+
"nbconvert>=7.14.2",
34+
"nbformat>=5.9.2",
35+
"nbsphinx>=0.9.4",
36+
"pre-commit>=3.7.1",
37+
"pytest>=8.0.0",
38+
"pytest-cov>=4.1.0",
39+
"ruff>=0.12.3",
40+
"sphinx-immaterial>=0.12.0",
41+
"sphinx>=7.0.0; python_version<'3.10'",
42+
"sphinx>=8.0.0; python_version>='3.10'",
43+
"sphinx-autodoc-typehints>=2.3.0; python_version<'3.10'",
44+
"sphinx-autodoc-typehints>=2.4.0; python_version>='3.10'",
4545
]
4646

4747
[tool.poetry]

0 commit comments

Comments
 (0)