Skip to content

Commit

Permalink
remove Python 3.12 from tests again for now
Browse files Browse the repository at this point in the history
  • Loading branch information
cneud committed Mar 19, 2024
1 parent c3d9315 commit 1469dd5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-eynollah.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml.draft
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ classifiers = [
]
dependencies = [
"ocrd >= 2.63.3",
"numpy <1.24.0",
"scikit-learn >= 1.3.2",
"tensorflow == 2.12.1",
"numpy <= 1.24.4",
"scikit-learn <= 1.3.2",
"tensorflow <= 2.13.1",
"imutils >= 0.5.4",
"matplotlib",
"matplotlib <= 3.7.5",
"setuptools >= 61",
]

Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ocrd includes opencv, numpy, shapely, click
ocrd >= 2.63.3
numpy <1.24.0
scikit-learn == 1.3.2 # only version supporting Python 3.8-3.12
tensorflow == 2.12.1
numpy <= 1.24.4
scikit-learn <= 1.3.2
tensorflow <= 2.13.1
imutils >= 0.5.4
matplotlib
setuptools >= 50
matplotlib <= 3.7.5
setuptools >= 61

0 comments on commit 1469dd5

Please sign in to comment.