Граф коммитов

8 Коммитов

Автор SHA1 Сообщение Дата
Andrew Halberstadt 24f4e86c26
fix(bqetl): issue running ./bqetl on Fedora Silverblue (#5989)
Silverblue symlinks `/home` -> `/var/home`, so using `pwd -P` returns
something different than $PWD. E.g:

    $ pwd -P; pwd; echo $PWD
    /var/home/ahal/dev/bigquery-etl
    /home/ahal/dev/bigquery-etl
    /home/ahal/dev/bigquery-etl

Removing the `-P` flag respects the symlink.
2024-08-07 09:09:25 -07:00
Jan-Erik Rediger b29b99b4f5
Update grpcio to a version that provides darwin arm64 builds (#3819)
* Update grpcio to a version that provides darwin arm64 builds

No more compiling of grpcio on an M1 macbook.

* Remove system version compatibility flag during bootstrap

We're long on versions that work on all recent (and supported) MacOS
versions.
2023-05-22 12:08:49 -07:00
Daniel Thorn 4406437be2
Use --no-deps when installing compiled requirements files (#2752) 2022-02-24 21:36:47 +00:00
Will Lachance 703239b004
Minor improvements to bqetl script (#2267)
* Check for a valid python installation
* Actually exit if `venv` directory already exists
* Don't require virtualenv package (use `venv` builtin)
* Ensure that we don't attempt to recompile numpy or pandas when
  installing on more recent versions of Mac
2021-08-16 21:01:07 +00:00
Daniel Thorn ca38326e91
Fix dependabot updates by separating pyjnius requirement (#1990) 2021-05-04 13:02:56 -04:00
William Lachance ba797386f9
Exit gracefully after `bqetl bootstrap` succeeds (#1928)
It would previously try to run bqetl with no arguments, which led
to confusing output.
2021-03-30 11:57:59 -04:00
William Lachance 966f46c259
Quote arguments to bqetl executable (#1768)
Allows you to use syntax that would otherwise be bash-expanded
(e.g. `--schedule-interval '0 4 * * *'`)
2021-02-11 16:27:42 -05:00
William Lachance dcedaee919
Streamline bqetl initialization and utilization (#1645)
This simplifies the multiple choice installation process into
a simplified version which uses a local virtualenv, which will
hopefully be easier to support and debug.
2021-01-06 11:11:20 -05:00