Skip to content

Commit

Permalink
Update packaging, tests to test packaging, and package version
Browse files Browse the repository at this point in the history
  • Loading branch information
rosepearson committed Sep 2, 2024
1 parent 17db805 commit 5a6dbad
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 26 deletions.
1 change: 1 addition & 0 deletions .github/workflows/linux-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,5 @@ jobs:
- name: Run tests with pytest
run: |
pip install .
pytest
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[build-system]
requires = [
"setuptools>=61.0.0",
"setuptools>=64",
"wheel"
]
build-backend = "setuptools.build_meta"

[project]
name = "geoapis"
version = "0.3.3"
version = "0.3.4"
description = "A package for downloading geospatial data from web APIs."
readme = "README.md"
authors = [{ name = "Rose pearson", email = "[email protected]" }]
Expand Down
12 changes: 0 additions & 12 deletions setup.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/geoapis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
@author: pearsonra
"""
__version__ = "0.3.3"
__version__ = "0.3.4"
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import shutil
import numpy

from src.geoapis import lidar
from geoapis import lidar


class OpenTopographyTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import shutil
import numpy

from src.geoapis import lidar
from geoapis import lidar


class OpenTopographyTestByName(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import shutil
import numpy

from src.geoapis import lidar
from geoapis import lidar


class OpenTopographyTestSubfolders(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import os
import logging

from src.geoapis import raster
from geoapis import raster


class LinzRasterTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import os
import logging

from src.geoapis import raster
from geoapis import raster


class LrisRasterTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import os
import geopandas

from src.geoapis import vector
from geoapis import vector


class LinzVectorsTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import dotenv
import os

from src.geoapis import vector
from geoapis import vector


class LinzVectorsTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import os
import geopandas

from src.geoapis import vector
from geoapis import vector


class LrisVectorsTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import dotenv
import os

from src.geoapis import vector
from geoapis import vector


class LrisVectorsTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import os
import geopandas

from src.geoapis import vector
from geoapis import vector


class StatsNzVectorsTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import dotenv
import os

from src.geoapis import vector
from geoapis import vector


class StatsNzVectorsTest(unittest.TestCase):
Expand Down

0 comments on commit 5a6dbad

Please sign in to comment.