Skip to content

Commit 1806f57

Browse files
authored
Merge pull request #139 from gyorilab/py312
Upgrade for Python 3.12 compatibility
2 parents 0326482 + ef9575d commit 1806f57

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.11"]
10+
python-version: ["3.8", "3.12"]
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Set up Python ${{ matrix.python-version }}

gilda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.2.0'
1+
__version__ = '1.2.1'
22

33
import logging
44

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
'Programming Language :: Python :: 3.11',
3636
],
3737
packages=find_packages(),
38-
install_requires=['regex', 'adeft>=0.11.0', 'boto3', 'flask>=3.0,<4.0',
38+
install_requires=['regex', 'boto3', 'adeft', 'flask>=3.0,<4.0',
3939
'flask-restx>=1.3.0', 'pystow>=0.1.10', 'unidecode',
4040
'importlib_metadata; python_version < "3.8"',
41-
'werkzeug'],
41+
'werkzeug', 'scikit-learn<1.5'],
4242
extras_require={'test': ['pytest', 'pytest-cov', 'pandas'],
4343
'terms': ['indra', 'obonet'],
4444
'benchmarks': ['pandas>=1.0', 'requests',

0 commit comments

Comments
 (0)