-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BLD: Consolidate build configurations and rebuilt requirements (#27)
* BLD: Consolidated build configurations and rebuilt requirements * Fixed pyproject vars and added atomicwrites dependency * Fix build issues in test and added Dockerfile * Added missing sympy dependency from broken laika package
- Loading branch information
Showing
8 changed files
with
195 additions
and
116 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM python:3.9 | ||
|
||
# Java needed for Spark API | ||
RUN apt-get update -y \ | ||
&& apt-get install -y libcurl4-openssl-dev libgeos-dev | ||
|
||
WORKDIR /tmp | ||
|
||
COPY requirements-dev.txt . | ||
COPY tid tid/ | ||
COPY .codecov.yml . | ||
COPY pyproject.toml . | ||
|
||
# Install python dependencies | ||
RUN pip install -r requirements-dev.txt | ||
|
||
ENTRYPOINT coverage run -m pytest -vv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,59 @@ | ||
# These are required for developing the package (running the tests, building | ||
# the documentation) but not necessarily required for _using_ it. | ||
codecov | ||
coverage | ||
flake8 | ||
pytest | ||
sphinx | ||
twine | ||
# These are dependencies of various sphinx extensions for documentation. | ||
ipython | ||
matplotlib | ||
numpydoc | ||
sphinx-copybutton | ||
sphinx_rtd_theme | ||
atomicwrites==1.4.1 | ||
attrs==22.2.0 | ||
awkward==2.0.4 | ||
awkward-cpp==5 | ||
black==22.12.0 | ||
Cartopy==0.21.1 | ||
certifi==2022.12.7 | ||
charset-normalizer==2.1.1 | ||
click==8.1.3 | ||
contourpy==1.0.6 | ||
coverage==7.0.1 | ||
cycler==0.11.0 | ||
exceptiongroup==1.1.0 | ||
flake8==6.0.0 | ||
fonttools==4.38.0 | ||
georinex==1.16.1 | ||
h5py==3.7.0 | ||
hatanaka==2.8.0 | ||
idna==3.4 | ||
importlib-resources==5.10.1 | ||
iniconfig==1.1.1 | ||
kiwisolver==1.4.4 | ||
laika @ git+https://github.com/commaai/laika@5eb0c3c2596dd12a232b83bdb057a716810e89cf | ||
matplotlib==3.6.2 | ||
mccabe==0.7.0 | ||
mpmath==1.2.1 | ||
mypy==0.991 | ||
mypy-extensions==0.4.3 | ||
ncompress==1.0.0 | ||
numpy==1.24.1 | ||
packaging==22.0 | ||
pandas==1.5.2 | ||
pathspec==0.10.3 | ||
Pillow==9.3.0 | ||
platformdirs==2.6.0 | ||
pluggy==1.0.0 | ||
pycodestyle==2.10.0 | ||
pycurl==7.45.2 | ||
pyflakes==3.0.1 | ||
pyparsing==3.0.9 | ||
pyproj==3.4.1 | ||
pyshp==2.3.1 | ||
pytest==7.2.0 | ||
python-dateutil==2.8.2 | ||
pytz==2022.7 | ||
PyYAML==6.0 | ||
requests==2.28.1 | ||
scipy==1.9.3 | ||
setuptools-scm==7.1.0 | ||
Shapely==1.8.4 | ||
six==1.16.0 | ||
sympy==1.11.1 | ||
tomli==2.0.1 | ||
tqdm==4.64.1 | ||
typing_extensions==4.4.0 | ||
unlzw3==0.2.1 | ||
urllib3==1.26.13 | ||
xarray==2022.12.0 | ||
zipp==3.11.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,43 @@ | ||
# List required packages in this file, one per line. | ||
|
||
georinex | ||
h5py | ||
laika @ git+https://github.com/commaai/laika#egg=laika | ||
matplotlib | ||
numpy | ||
ruptures | ||
scipy | ||
atomicwrites==1.4.1 | ||
awkward==2.0.4 | ||
awkward-cpp==5 | ||
Cartopy==0.21.1 | ||
certifi==2022.12.7 | ||
charset-normalizer==2.1.1 | ||
contourpy==1.0.6 | ||
cycler==0.11.0 | ||
fonttools==4.38.0 | ||
georinex==1.16.1 | ||
h5py==3.7.0 | ||
hatanaka==2.8.0 | ||
idna==3.4 | ||
importlib-resources==5.10.1 | ||
kiwisolver==1.4.4 | ||
laika @ git+https://github.com/commaai/laika@5eb0c3c2596dd12a232b83bdb057a716810e89cf | ||
matplotlib==3.6.2 | ||
mpmath==1.2.1 | ||
ncompress==1.0.0 | ||
numpy==1.24.1 | ||
packaging==22.0 | ||
pandas==1.5.2 | ||
Pillow==9.3.0 | ||
pycurl==7.45.2 | ||
pyparsing==3.0.9 | ||
pyproj==3.4.1 | ||
pyshp==2.3.1 | ||
python-dateutil==2.8.2 | ||
pytz==2022.7 | ||
PyYAML==6.0 | ||
requests==2.28.1 | ||
scipy==1.9.3 | ||
setuptools-scm==7.1.0 | ||
Shapely==1.8.4 | ||
six==1.16.0 | ||
sympy==1.11.1 | ||
tomli==2.0.1 | ||
tqdm==4.64.1 | ||
typing_extensions==4.4.0 | ||
unlzw3==0.2.1 | ||
urllib3==1.26.13 | ||
xarray==2022.12.0 | ||
zipp==3.11.0 |