Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
samapriya committed Sep 26, 2023
1 parent c64742d commit 8c70bbc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies (Mac)
continue-on-error: true
run: python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
wheel
pandas==2.0.3
earthengine_api>=0.1.274
logzero>=1.5.0
requests >= 2.22.0
Expand All @@ -8,7 +9,6 @@ natsort >= 8.1.0
requests_toolbelt >= 0.7.0
pytest >= 3.0.0
future >= 0.16.0
pandas
psutil>=5.4.5
pathlib>=1.0.1
lxml>=4.1.1
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
import sys
from distutils.version import StrictVersion

import setuptools
from setuptools import __version__ as setuptools_version
from setuptools import find_packages
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand


Expand All @@ -13,19 +12,20 @@ def readme():
return f.read()


setuptools.setup(
setup(
name="geeup",
version="0.6.5",
python_requires=">=3.6",
packages=find_packages(),
url="https:/samapriya/geeup",
install_requires=[
"wheel",
"pandas==2.0.3",
"earthengine_api>=0.1.370",
"logzero>=1.5.0",
"requests >= 2.10.0",
"retrying >= 1.3.3",
"natsort >= 8.1.0",
"pandas",
"psutil>=5.4.5",
"cerberus>=1.3.4",
"requests_toolbelt >= 0.7.0",
Expand Down

0 comments on commit 8c70bbc

Please sign in to comment.