Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/20221203/fixed dist info requirement for deploy #1156

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/history.rst
Expand Up @@ -4,6 +4,10 @@ Change Log
Latest
-------

3.4.1
-----
- BUG: Changed so that the setup.cfg depends on the version code in the __init__.py instead of the other way around (issuue #1155)

3.4.0
-----
- WHL: Python 3.11 Wheels (issue #1110)
Expand Down
3 changes: 1 addition & 2 deletions pyproj/__init__.py
Expand Up @@ -28,7 +28,6 @@
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""
import importlib.metadata
import warnings

import pyproj.network
Expand Down Expand Up @@ -67,7 +66,7 @@
transform,
)

__version__ = importlib.metadata.version(__package__)
__version__ = "3.4.1.dev1"
__all__ = [
"Proj",
"Geod",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = pyproj
version = 3.4.1.dev0
version = attr: pyproj.__version__
description = Python interface to PROJ (cartographic projections and coordinate transformations library)
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down