Skip to content

Commit

Permalink
Added support for python 3.12 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrParosk authored Mar 2, 2024
1 parent 665c2b1 commit 5fe8d81
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install
run: |
pip install .
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
denstream.egg-info/
examples/.ipynb_checkpoints/
.venv/
build/

.coverage
coverage.xml
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
args: [--exclude=.venv]

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.2.0
hooks:
- id: black

Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
black==23.12.1
black==24.2.0
flake8==7.0.0
isort==5.13.2
mypy==1.8.0
pre-commit==3.6.0
pytest==7.4.4
pre-commit==3.6.2
pytest==8.0.2
pytest-cov==4.1.0
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
numba>=0.56.2,<=0.58.1
numpy>=1.23,<=1.26.3
scikit-learn>=1.0,<=1.3.2
numba>=0.56.2
numpy>=1.23
scikit-learn>=1.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
packages=["denstream"],
install_requires=required,
setup_requires=["wheel"],
python_requires=">=3.8, <3.12",
python_requires=">=3.8, <3.13",
)

0 comments on commit 5fe8d81

Please sign in to comment.