Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

pyproj 3.4 | PROJ 9.1 | Python 3.11 #54

Merged
merged 2 commits into from
Sep 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ env:
global:
- REPO_DIR=pyproj
# Commit from your-project that you want to build
- BUILD_COMMIT=3.3.1
- BUILD_COMMIT=3.4.0
- BUILD_DEPENDS="Cython" # pip dependencies to _build_ your project
# pip dependencies to _test_ your project. Include any dependencies
# that you need, that are also specified in BUILD_DEPENDS, this will be
Expand Down Expand Up @@ -55,6 +55,16 @@ matrix:
- PLAT=aarch64
- MB_ML_VER=2014
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
- os: linux
arch: arm64-graviton2
dist: focal
virt: vm
group: edge
env:
- MB_PYTHON_VERSION=3.11
- PLAT=aarch64
- MB_ML_VER=2014
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
before_install:
- git config --global advice.detachedHead false
- source multibuild/common_utils.sh
Expand Down
2 changes: 1 addition & 1 deletion config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CURL_VERSION=7.76.1
NGHTTP2_VERSION=1.43.0

export PROJ_WHEEL=true
export PROJ_VERSION=8.2.0
export PROJ_VERSION=9.1.0


function install_curl_certs {
Expand Down
2 changes: 1 addition & 1 deletion pyproj
Submodule pyproj updated 55 files
+73 −0 .all-contributorsrc
+7 −0 .flake8
+5 −1 .github/workflows/build_docs.yaml
+167 −0 .github/workflows/release.yaml
+10 −2 .github/workflows/test_proj_latest.yaml
+91 −23 .github/workflows/tests.yaml
+5 −5 .pre-commit-config.yaml
+7 −586 .pylintrc
+9 −9 CONTRIBUTING.md
+7 −5 HOW_TO_RELEASE.md
+2 −2 Makefile
+11 −2 README.md
+7 −11 appveyor.yml
+297 −0 ci/proj-compile-wheels.sh
+11 −0 ci/vcpkg.json
+10 −112 docs/conf.py
+23 −0 docs/history.rst
+3 −4 docs/index.rst
+13 −11 docs/installation.rst
+1 −0 docs/past_versions.rst
+8 −6 docs/transformation_grids.rst
+17 −16 pyproj/__init__.py
+2 −15 pyproj/_datadir.pyx
+6 −0 pyproj/_network.pyx
+5 −18 pyproj/_show_versions.py
+7 −2 pyproj/_transformer.pyi
+68 −527 pyproj/_transformer.pyx
+1 −1 pyproj/base.pxi
+8 −2 pyproj/crs/coordinate_operation.py
+66 −27 pyproj/crs/crs.py
+5 −1 pyproj/database.pyi
+12 −0 pyproj/database.pyx
+7 −3 pyproj/datadir.py
+4 −0 pyproj/enums.py
+46 −20 pyproj/geod.py
+2 −0 pyproj/network.py
+26 −1 pyproj/proj.pxi
+30 −4 pyproj/proj.py
+103 −53 pyproj/transformer.py
+8 −1 pyproj/utils.py
+3 −3 pyproject.toml
+2 −2 requirements-docs.txt
+1 −1 requirements-test.txt
+1 −0 setup.cfg
+13 −16 setup.py
+4 −4 test/conftest.py
+96 −32 test/crs/test_crs.py
+19 −15 test/crs/test_crs_cf.py
+21 −35 test/crs/test_crs_coordinate_operation.py
+5 −2 test/crs/test_crs_maker.py
+26 −4 test/test_datadir.py
+17 −3 test/test_sync.py
+0 −6 test/test_transform.py
+139 −52 test/test_transformer.py
+7 −0 test/test_utils.py