Skip to content

Commit

Permalink
Merge pull request #31 from PolicyEngine/nikhilwoodruff/issue30
Browse files Browse the repository at this point in the history
Remove mistaken import from `turtle`
  • Loading branch information
nikhilwoodruff committed Feb 16, 2022
2 parents 5529848 + d8f6c16 commit 9b1aba2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.1] - 2022-02-16

### Fixed

* Fixed mistaken import from `turtle` (should be `pandas`).

## [0.4.0] - 2022-02-14

### Added
Expand Down
2 changes: 1 addition & 1 deletion openfisca_tools/model_api.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging
from turtle import pd
import pandas as pd
from openfisca_core.model_api import (
DAY,
MONTH,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="OpenFisca-Tools",
version="0.4.0",
version="0.4.1",
author="PolicyEngine",
license="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
url="https://github.com/policyengine/openfisca-tools",
Expand Down

0 comments on commit 9b1aba2

Please sign in to comment.