Skip to content

Commit

Permalink
4.5.0 version release
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkauffmann committed Dec 1, 2020
1 parent e32dbe0 commit 982d643
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 3 deletions.
Binary file removed dist/moodleapi-4.4.0.tar.gz
Binary file not shown.
Binary file added dist/moodleapi-4.5.0.tar.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions moodleapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
MOODLEAPI PACKAGE FOR CONNECTION WITH THE MOODLE PLATFORM
LATEST VERSION: 4.4.0
LATEST VERSION: 4.5.0
STABLE VERSION: 4.4.0
STABLE VERSION: 4.5.0
"""


Expand All @@ -18,7 +18,7 @@

from .utils import get_version

VERSION = (4, 4, 0)
VERSION = (4, 5, 0)

__version__ = get_version(VERSION)

Expand Down
1 change: 1 addition & 0 deletions tests/unit_tests/calendar_tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

19 changes: 19 additions & 0 deletions tests/unit_tests/calendar_tests/docx_example.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
In the Society of Vegecultural Cultivators



Huw Barton, School of Archaeology and Ancient History, University of Leicester. LE1 7RH, UK. [email protected]



Tim Denham, School of Geography and Environmental Science, Building 11, Monash University, Clayton Campus, VIC 3800, Australia. [email protected]





Introduction



This paper considers the implication of vegecultural systems of food production within a prehistoric context within Southeast Asia and contrasts this with the better described systems of plant cultivation known from the prehistory of Papua New Guinea. In doing this we also consider the social significance of vegecultural traditions as a more than simply a method of providing food in tropical contexts but as an embedded ‘practice’ that, over millennia, had become tightly woven into indigenous cosmologies. We consider long histories of vegeculture across Melanesia and Island Southeast Asia, primarily involving asexual propagation, transplanting, and low intensity plant management within forested environments We argue that mosaics, or a patchwork, of human-plant interactions existed across Island Southeast Asia and into Melanesia from the Pleistocene until the late Holocene and that this had important implications for the histories of people-plant interactions and instances of phenotypic change in some plants, but its absence in others. Finally we consider what this implies for the apparent late adoption of rice as a major staple across island Southeast Asia south of Taiwan; a transformation that was structured by behavioural predispositions (habitus), domesticatory relationships (domus), including exploitation practices, and plants (after Bourdieu 1990; Hodder 1990; Denham 2004). Rather than solely being inherited from Austronesian-speaking colonisers (Bellwood 2005), the deep antiquity of vegecultural forms of people-plant interaction did not pave the way for a new farming system and new farming technologies, and is more likely to have discouraged its adoption for many thousands of years.
30 changes: 30 additions & 0 deletions tests/unit_tests/calendar_tests/tools_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import unittest
from unittest import TestCase

import convertapi

from moodleapi.core.calendar import clean, time

from .secret import SECRET_KEY


class ToolsTestCase(TestCase):
def setUp(self):
generate_text()

def test_clean(self):
pass

def test_time(self):
pass


def generate_text():
convertapi.api_secret = SECRET_KEY
convertapi.convert(
"txt", {"File": "html_example.txt"}, from_format="html"
).save_files("docx_example.txt")


if __name__ == "__main__":
unittest.main()

0 comments on commit 982d643

Please sign in to comment.