Skip to content

Commit

Permalink
Support newer versions of Django up to 3.x.y (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluedenim committed Apr 23, 2023
1 parent 2c2a058 commit 727b899
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ version: "3.9"
# To Publish (test pypi):
# docker-compose run --rm buildenv /bin/bash
# poetry config repositories.testpypi https://test.pypi.org/legacy/
# poetry config http-basic.testpypi vancly <password>
# poetry config http-basic.testpypi vancly
# enter password when prompted
# poetry publish -r testpypi

# To Publish:
# docker-compose run --rm buildenv /bin/bash
# poetry config http-basic.pypi vancly <password>
# poetry config http-basic.pypi vancly
# enter password when prompted
# poetry publish

services:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "vmigration-helper"
version = "0.2.0"
version = "0.2.1"
homepage = "https://github.com/bluedenim/vmigration-helper"
description = "Van's Django Migration Helper"
authors = ["bluedenim <[email protected]>"]
Expand All @@ -13,7 +13,7 @@ keywords = ["django","migration","rollback"]

[tool.poetry.dependencies]
python = ">=3.7,<4.0"
Django = "^1.11.17"
Django = ">=1.11.17,<4"

[tool.poetry.dev-dependencies]
twine = "^3.4.1"
Expand Down

0 comments on commit 727b899

Please sign in to comment.