Skip to content

Commit b956647

Browse files
committed
Add python 3.9 & 3.10 supports and Drop 3.6
1 parent b2f3c04 commit b956647

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.6, 3.7, 3.8]
18+
python-version: ['3.7', '3.8', '3.9', '3.10']
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -32,10 +32,10 @@ jobs:
3232
shell: bash -l {0}
3333
run: |
3434
conda config --set always_yes yes
35-
conda install pytest pip
35+
conda install pytest pip
3636
conda install -c conda-forge pyccl
3737
pip install .
38-
38+
3939
- name: Test with pytest
4040
shell: bash -l {0}
4141
run: |

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@
1717
author="jax-cosmo developers",
1818
packages=find_packages(),
1919
url="https://github.com/DifferentiableUniverseInitiative/jax_cosmo",
20+
python_requires=">=3.7",
2021
install_requires=["jax", "jaxlib"],
2122
tests_require=["pyccl"],
2223
use_scm_version=True,
2324
setup_requires=["setuptools_scm"],
2425
classifiers=[
25-
"Programming Language :: Python :: 3.6",
2626
"Programming Language :: Python :: 3.7",
2727
"Programming Language :: Python :: 3.8",
28+
"Programming Language :: Python :: 3.9",
29+
"Programming Language :: Python :: 3.10",
2830
"License :: OSI Approved :: MIT License",
2931
"Operating System :: MacOS",
3032
"Operating System :: POSIX :: Linux",

0 commit comments

Comments
 (0)