Skip to content

Commit

Permalink
Merge pull request #139 from gyorilab/py312
Browse files Browse the repository at this point in the history
Upgrade for Python 3.12 compatibility
  • Loading branch information
bgyori authored Jun 12, 2024
2 parents 0326482 + ef9575d commit 1806f57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.8", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion gilda/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.2.0'
__version__ = '1.2.1'

import logging

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
'Programming Language :: Python :: 3.11',
],
packages=find_packages(),
install_requires=['regex', 'adeft>=0.11.0', 'boto3', 'flask>=3.0,<4.0',
install_requires=['regex', 'boto3', 'adeft', 'flask>=3.0,<4.0',
'flask-restx>=1.3.0', 'pystow>=0.1.10', 'unidecode',
'importlib_metadata; python_version < "3.8"',
'werkzeug'],
'werkzeug', 'scikit-learn<1.5'],
extras_require={'test': ['pytest', 'pytest-cov', 'pandas'],
'terms': ['indra', 'obonet'],
'benchmarks': ['pandas>=1.0', 'requests',
Expand Down

0 comments on commit 1806f57

Please sign in to comment.