Skip to content

Commit

Permalink
Merge pull request #34 from SpitfireX/python-3.12
Browse files Browse the repository at this point in the history
Changes for Python 3.12
  • Loading branch information
ausgerechnet authored Jun 27, 2024
2 parents 439b270 + 4c8452e commit 0ac2545
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
17 changes: 9 additions & 8 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pytest = "==7.0.1"
pylint = "==2.13.9"
pytest-cov = "==3.0.0"
twine = "==3.7.1"
setuptools = "==59.6.0"
cython = "==0.29.30"
pytest = "==7.4.0"
pylint = "==2.17.5"
pytest-cov = "==4.1.0"
twine = "==4.0.2"
setuptools = "==68.0.0"
cython = "==3.0.0"

[packages]
wheel = ">=0.37.1"
pandas = ">=1.1.5"
wheel = ">=0.41.1,<0.42"
pandas = ">=1.3.5,<2.0"
numpy = "<2.0.0"
scipy = ">=1.5.4"
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

import os
import sys
from setuptools import find_packages, Command
from distutils.core import setup
from distutils.extension import Extension
from setuptools import find_packages, setup, Command, Extension

# Package meta-data.
NAME = 'association-measures'
Expand Down

0 comments on commit 0ac2545

Please sign in to comment.