Skip to content

Commit

Permalink
drop python 3.7,3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kavvkon committed Feb 3, 2024
1 parent 6511817 commit 8f5ea39
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/requirements.txt
@@ -1,4 +1,4 @@
numpy>=1.10
scipy>=1.7
matplotlib>=2.2
pandas>=1.4
pandas>=2.0
2 changes: 1 addition & 1 deletion environment.yml
Expand Up @@ -2,7 +2,7 @@ name: enlopy
dependencies:
- python=3.9
- numpy>=1.10
- scipy>=1.7
- scipy>=1.10
- matplotlib>=2.0
- pandas>=2.0
- pytest
Expand Down
9 changes: 2 additions & 7 deletions setup.py
Expand Up @@ -27,9 +27,9 @@ def find_version(*file_paths):
raise RuntimeError("Unable to find version string.")

requirements = ['numpy>=1.10',
'scipy>=1.7',
'scipy>=1.10',
'matplotlib>=2.2',
'pandas>=1.4']
'pandas>=2.0']

setup(
name="enlopy",
Expand Down Expand Up @@ -65,11 +65,6 @@ def find_version(*file_paths):

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
# 'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand Down

0 comments on commit 8f5ea39

Please sign in to comment.