Skip to content

Commit

Permalink
Merge pull request #34 from godric/main
Browse files Browse the repository at this point in the history
  • Loading branch information
bakermoran authored Apr 6, 2024
2 parents b40ef13 + 8d45ac7 commit c19262e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy==1.19.5
pandas==1.1.5
matplotlib==3.3.4
seaborn==0.10.1
numpy>=1.21.0,<1.24.0
pandas<1.5.0
matplotlib<4.0.0
seaborn<0.11.0
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@
download_url='https://github.com/bakermoran/BayesABTest/archive/v1.0.8-alpha.tar.gz',
packages=['BayesABTest'],
include_package_data=True,
python_requires='>=3.6',
python_requires='>=3.8',
install_requires=[
'numpy==1.19.5',
'pandas==1.1.5',
'matplotlib==3.3.4',
'seaborn==0.10.1'
'numpy>=1.21.0,<1.24.0',
'pandas<1.5.0',
'matplotlib<4.0.0',
'seaborn<0.11.0',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)

0 comments on commit c19262e

Please sign in to comment.